我有php页面,我有文本字段,我输入一个数字。数据存储在数据库中。我需要获取在文本字段中输入的数字,以便在下一页中自动显示,并在需要用户无法修改的地方进行删除。请建议我如何使用php,jquery来做到这一点。请给我打电话告诉我该怎么做..在第二页输入的值将在数据库中输入我在第一页中输入的数字。
//first page
<table border="0" style="border-collapse:collapse;" align="center">
<tr>
<td>
<div id="col1" align="center"><br />
<form method="post" action="user.php">
<label type="text" name="name" maxlength="50" size="30" class="label">Enter the Membership Number</label><br />
<input type="text" name='id' placeholder="enter Membership Number" class="input" size="40"/><br />
<span class="field">(* Required field)</span><br /><br />
<input type="submit" name="submit" value="SUBMIT" class="button"><br /><br /><br /><br />
</form>
</body>
</html>
<?php
mysql_connect("localhost","root","");
mysql_select_db("anthonys");
if(isset($_POST['submit']))
{
$id= $_POST['id'];
if( ! ctype_alnum($id) )
die('invalid id');
$query = "SELECT uid FROM `payment` WHERE `uid` =$id";
$run = mysql_query($query);
echo $id;
if(mysql_num_rows($run)>0){
echo "<script>window.open('member1.php','_self')</script>";
}
else {
echo "<script>alert('Login details are incorrect!')</script>";
}
}
?>
//second page
$(function() {
$("#XISubmit").click(function(){
var uid=document.forms["XIForm"]["uid"].value;
var fathername = document.forms["XIForm"]["fathername"].value;
if(fathername == null || fathername == "")
{
alert("Please Enter Father's Name");
return false;
}
document.getElementById("XIForm").submit();
});
if ($.browser.msie && $.browser.version.substr(0, 1) < 7) {
$('li').has('ul').mouseover(function() {
$(this).children('ul').show();
}).mouseout(function() {
$(this).children('ul').hide();
})
}
;
});
</script></head>
<section id="sheet" style="background-color: Transparent;">
<div id="content_inner">
<header id="header_inner">St. Anthony's Parish Education Fund
<br /><b style="font-size:15px;">Bangalore 560 095</b><br /><img src="images/line1.jpg" alt="" /></header>
<div id="col2">
<h2>Application for the Membership</h2><br /><br />
<table border="0px" style="border-collapse:collapse; width:810px;" align="center">
<tr>
<td>
<form name="XIForm" id="XIForm" method="POST" action="pdf/pdf1.php">
<input type="text" name="uid" />
<label type="text" name="fathername" maxlength="50" size="30" class="label">Father's Name</label><br />
<input name="fathername" placeholder="" class="input" size="40"/><br /><br />
<input type="hidden" name="formType" id="formType" value="reg"/>
<input type="button" name="XISubmit" id="XISubmit" value="ADD" class="button" />
<br /><br /><br /><br />
</form></td>
此代码无法从第一页获取值。
答案 0 :(得分:0)
通过网址传递号码,如
if(mysql_num_rows($run)>0){
echo "<script>window.open('member1.php?id=".$id."','_self')</script>";
}
并在要显示此值的页面中,执行以下操作:
1)使用
接受来自url的idif(isset($_GET['id'])
$id=$_GET['id'];
2)在文本框中显示值。
<input type="text" name="id" id="id" value="<?php if(isset($_GET['id']) { echo $id; } ?>" readonly>
3)您可以在表单中添加此文本框以及其他表单元素,并且可以像往常一样在表单中传递此ID。
<form action="youractionpage.php" method="post">
ID <input type="text" name="id" id="id" value="<?php if(isset($_GET['id'])) { echo $id; } ?>" readonly>
Amount <input type="text" name="amount">
Name <input tpye="text" name="name">
<input type="submit" value="Submit">
</form>