View Single Post
ישן 17-04-14, 23:01   # 4
Megnum
חבר וותיק
 
מיני פרופיל
תאריך הצטרפות: May 2007
מיקום: אשד
הודעות: 1,308

Megnum לא מחובר  

בבקשה:

PHP קוד:
<form method="post" action="">
<textarea name="values"></textarea>
<input type="submit" name="" />
</form>

<?php
    $values
=isset($_POST['values']) ? $_POST['values'] : "";
    
$e=explode("\n",$values);
    foreach (
$e as $value) {
        print 
"Input :<input type='text' name='{$value}' value='{$value}' />""<br/>";
    }
?>
  Reply With Quote