php如何用update更新多条数据
A页面代码:<?php$exec="select*fromfocusimg";$result=mysql_query($exec,$link);while($pt=mys...
A页面代码:
<?php
$exec="select * from focusimg";
$result = mysql_query($exec,$link);
while($pt=mysql_fetch_array($result)){
?>
<tr onmouseover="this.className='admTr'" onmouseout="this.className=''">
<td width="17%" align="right">标题<?php echo $pt['id']; ?>:</td>
<td><input name="title" type="text" id="textfield" value="<?php echo $pt['title'];?>" size="30" /></td>
<td width="17%" align="right">链接<?php echo $pt['id']; ?>:</td>
<td><input name="url" type="text" id="textfield" value="<?php echo $pt['url'];?>" size="30" /> </td>
</tr>
<?php
};
?>
B页面代码:
<?php
include 'conn.php';
$url=$_POST['url'];
$title=$_POST['title'];
$exec="update chips set title='$title',url='$url'";
mysql_query($exec, $link);
mysql_close($link);
echo "edit OK!";
?>
查了一下资料说用数组,但我不知道怎么用,最好有代码直接告诉我,麻烦了~ 展开
<?php
$exec="select * from focusimg";
$result = mysql_query($exec,$link);
while($pt=mysql_fetch_array($result)){
?>
<tr onmouseover="this.className='admTr'" onmouseout="this.className=''">
<td width="17%" align="right">标题<?php echo $pt['id']; ?>:</td>
<td><input name="title" type="text" id="textfield" value="<?php echo $pt['title'];?>" size="30" /></td>
<td width="17%" align="right">链接<?php echo $pt['id']; ?>:</td>
<td><input name="url" type="text" id="textfield" value="<?php echo $pt['url'];?>" size="30" /> </td>
</tr>
<?php
};
?>
B页面代码:
<?php
include 'conn.php';
$url=$_POST['url'];
$title=$_POST['title'];
$exec="update chips set title='$title',url='$url'";
mysql_query($exec, $link);
mysql_close($link);
echo "edit OK!";
?>
查了一下资料说用数组,但我不知道怎么用,最好有代码直接告诉我,麻烦了~ 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询