-
@GOOGL נסה את הקוד הבא:
<?php $ini_array = parse_ini_file("Names.ini", true); ?> <html> <body> <?php foreach ($ini_array as $key => $data) { ?> <form> <label for="Form number">Form number:</label><br> <input type="text" id="Form number" name="Form number" value="<?php echo $key; ?>"><br> <label for="fname">First name:</label><br> <input type="text" id="fname" name="fname" value="<?php echo $data["fname"]; ?>"><br> <label for="lname">Last name:</label><br> <input type="text" id="lname" name="lname" value="<?php echo $data["lname"]; ?>"><br><br> <input type="submit" value="Submit"> </form> <hr style="margin-bottom: 20px;"> <?php } ?> </body> </html>
-
@GOOGL הקוד שלי יועד למקרה הזה
[Form_num = 1] First_name = Israel Last_name = Israeli [Form_num = 2] First_name = Sarah Last_name = Cohen
שזה קובץ בודד אבל מרובה מקטעים (section).
אני מנסה להבין את המקרה שלך מתחילת השרשור,
ובשלב זה התייאשתי לרדוף אחריך.
אני כעת מבין שיש כמה קבצים ובכל קובץ כמה מקטעים.
אני לא יודע האם אתה תמיד רוצה את כל הקבצים או אתה רוצה בורר מסויים, ולפי מה הוא.
אני כבר לא יענה לך, אבל מקוה שאחרים כן. -