Jump to content

Loop Updating


Zepo.

Recommended Posts

I have a loop that outputs inputs, for setting. Right now i have it where you can only update one at a time. I want it to where you can update all of them at once.

Example

$sett = mysql_query("SELECT * FROM configuration");
while ($set = mysql_fetch_array($sett)){
echo"<form method='post'>
<tr valign='top'>
<td class='optiontitle'  colspan='2'><div align='center'>$set[name]</div></td>
</tr>
<tbody id='tbody_keywords'>
<tr valign='top'>
<td class='alt1'><div class='smallfont' align='center'>
<input type='text' name='set[value]' value='$set[value]' size='70' maxlength='40'>
<input type='hidden' name='act' value='updateset'>
<input type='hidden' name='set[name]' value='$set[name]'>
<input type='image' src='./images/edit.png' name='submit'>

</div>
</td>
</tr></form>
";
}

Link to comment
https://forums.phpfreaks.com/topic/82737-loop-updating/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.