View Single Post
ישן 17-07-11, 17:15   # 1
MasterNetwork
עסק רשום [?]
 
מיני פרופיל
תאריך הצטרפות: Jun 2007
הודעות: 653

MasterNetwork לא מחובר  

תחשב כמה איידים יש לך שם והנה פחות או יותר איך תפעיל את זה.

קוד:
<form>
<input type="id[1]">
<input type="id[2]">
<input type="id[3]">
<input type="id[4]">
<input type="id[5]">
</form>

<?php
for ($i=1; ; $i++){

$value=$_POST["id[{$i}]"];
if ($i==10){ break; }
update where id=$i set value=$value;

}
?>
  Reply With Quote