有两页。在第1页中,用户输入一个数字,因此从db中获取数据。在第2页中,用户对数据执行一些操作并按第2页中的提交,然后第一页中用户提交的id或值将与第2页中更改的数据一起存储。我应该将更改的数据存储在第2页中第1页中的id。我无法存储第一页的输入。我是php的新手。这是代码
第1页:
<form name="VAL" action="ty.php" method="POST">
<?php
echo "<input type=\"number\" name=\"j\" value=\"j\"class=\"input\" min=\"1\" max =\"2000\">
echo "<input type=\"submit\" name=\"submit1\" value=\"choice1\"class=\"button\">
?>
第2页:
<?php
$ytr=$_post['j'];//The value of number entered by user in page 1 this is not saving in db
$wer=$_POST['hi'];
if($_SERVER['REQUEST_METHOD'] == 'POST'&& $_POST['submit2']=='choice2')
{
$con = mysql_connect("localhost","root","");
if (!$con){
die('Could not connect: ' . mysql_error());
}
mysql_select_db("ram", $con);
$sqlCmd = sprintf("INSERT INTO outp (tweet,Mtweet) VALUES ('%s','%s')",
mysql_real_escape_string($ytr),
mysql_real_escape_string($wer));
mysql_query($sqlCmd);
mysql_close($con);
}
?>`
答案 0 :(得分:0)
您可以使用php的SESSION变量来存储可在整个应用程序中访问的数据。