php 将从数据库中得到的值传到另一个页面
<formaction="test.php"method="post"><tablewidth="531"><tr><thwidth="50">姓名:</th><thwi...
<form action="test.php" method="post">
<table width="531">
<tr>
<th width="50">姓名:</th>
<th width="144"><?php echo $row["name"]?></th>
<th width="53">性别:</th>
<th width="90"><?php echo $row["sex"]?></th>
<th width="46">年龄:</th>
<th width="120"><?php echo $row["age"]?></th>
</tr>
</table>
<input name="updata" type="submit" value="修改" />
</form>
将 $row["name"],$row["sex"],$row["age"]这三个从数据库中提取的数传到test.php页面中。
希望能写出代码,谢谢啦。 展开
<table width="531">
<tr>
<th width="50">姓名:</th>
<th width="144"><?php echo $row["name"]?></th>
<th width="53">性别:</th>
<th width="90"><?php echo $row["sex"]?></th>
<th width="46">年龄:</th>
<th width="120"><?php echo $row["age"]?></th>
</tr>
</table>
<input name="updata" type="submit" value="修改" />
</form>
将 $row["name"],$row["sex"],$row["age"]这三个从数据库中提取的数传到test.php页面中。
希望能写出代码,谢谢啦。 展开
展开全部
可以这样:
你要在<form ></form>标签里加个隐藏的表单,如这样:
<table width="531">
<tr>
<th width="50">姓名:</th>
<th width="144"><?php echo $row["name"]?><input type="hidden" name="realname" value="<?=$row["name"]?>" /></th><!--每个里面加上这上一个隐藏的表单,这样你提交之后就可以在另外一个页面获取值了-->
<th width="53">性别:</th>
<th width="90"><?php echo $row["sex"]?></th>
<th width="46">年龄:</th>
<th width="120"><?php echo $row["age"]?></th>
</tr>
</table>
<input name="updata" type="submit" value="修改" />
</form>
在另外一个页面这样获取值:
$name=$_POST['realname']; //这样在test.php页面就取到人名的值了
其他值同理
你要在<form ></form>标签里加个隐藏的表单,如这样:
<table width="531">
<tr>
<th width="50">姓名:</th>
<th width="144"><?php echo $row["name"]?><input type="hidden" name="realname" value="<?=$row["name"]?>" /></th><!--每个里面加上这上一个隐藏的表单,这样你提交之后就可以在另外一个页面获取值了-->
<th width="53">性别:</th>
<th width="90"><?php echo $row["sex"]?></th>
<th width="46">年龄:</th>
<th width="120"><?php echo $row["age"]?></th>
</tr>
</table>
<input name="updata" type="submit" value="修改" />
</form>
在另外一个页面这样获取值:
$name=$_POST['realname']; //这样在test.php页面就取到人名的值了
其他值同理
展开全部
你这个一不传表单值,二没有URL参数传值。怎么实现?
DOM应该这样写:
<input type="text" name="username" value="<?php echo $row["name"]; ?>"/>
提交到text.php页面时,
if($_POST['updata']){
$username=strip_tags($_POST['username']);
…………………………//其他类似
}
print_r($_POST);
DOM应该这样写:
<input type="text" name="username" value="<?php echo $row["name"]; ?>"/>
提交到text.php页面时,
if($_POST['updata']){
$username=strip_tags($_POST['username']);
…………………………//其他类似
}
print_r($_POST);
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<form action="test.php" method="post">
<table width="531">
<tr>
<th width="50">姓名:</th>
<th width="144"><input type="txt" name="name" value="<?php echo $row["name"]?>" /></th>
<th width="53">性别:</th>
<th width="90"><input type="txt" name="sex" value="<?php echo $row["sex"]?>" /></th>
<th width="46">年龄:</th>
<th width="120"><input type="txt" name="age" value="<?php echo $row["age"]?>" /></th>
</tr>
</table>
<input name="updata" type="submit" value="修改" />
</form>
test.php:
<?php
print_r($_POST);
<table width="531">
<tr>
<th width="50">姓名:</th>
<th width="144"><input type="txt" name="name" value="<?php echo $row["name"]?>" /></th>
<th width="53">性别:</th>
<th width="90"><input type="txt" name="sex" value="<?php echo $row["sex"]?>" /></th>
<th width="46">年龄:</th>
<th width="120"><input type="txt" name="age" value="<?php echo $row["age"]?>" /></th>
</tr>
</table>
<input name="updata" type="submit" value="修改" />
</form>
test.php:
<?php
print_r($_POST);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<?php
$sql = mysql_query("select * from `your_tb_name`");
$row = mysql_fetch_array($sql);
$name = $row["name"];
$sex = $row["sex"];
$age = $row["age"];
header("Location: /test.php?name=".$name."&sex=".$sex."&age=".$age);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询