Dear Sir,
I have following codes. These code wok fine. Is it possible to get table data with ajax. If yes then please help me to modify my code. Thanks
<?php
require_once("connect.php");
$productCode = "";
$productValue="";
if(isset($_POST['button1']))
{
// Get values from form
$sno =$_POST['txtsno'];
$record_check ="SELECT * FROM test WHERE sno = '$sno' ";
$result=mysqli_query($con, $record_check);
$row = mysqli_fetch_array($result);
//conditional statement starts
if(!$row)
die ('No record Found');
else
{
$productValue = $row['packing'];
$productCode = $sno;
}
// Conditional statement ends
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Display data in textboxes</title>
<!-- Style Sheet part start -->
<style type="text/css">
html {
overflow:auto;
}
body {
background-color:#FFFFFF;
margin:0 auto;
}
#mypopup
{
float: left;
width: 250px; height: 350px;
background-color:#d5eef4 ;
border: 1px solid #069;
text-align:center;
padding:2px;
margin-top:150px;
margin-left:100px;
overflow:auto;
}
#header
{
background-color:#3399FF;
background-position:left center;
line-height:25px;
font-size:22px;
color:#FFFF33;
font-weight:600;
border-bottom:1px solid #6699CC;
padding:10px;
}
</style>
<!-- Style Sheet part end -->
</head>
<body>
<center>
<div id="mypopup">
<div id="header">Search Data</div>
<div style="margin-top:80px;">
<form name="form1" action="#" method="post">
<table border=0; cellpadding="1" cellspacing="1" bgcolor="#CCFFFF" align="center" >
<tr>
<th>Code</th>
<th width="50px"><input type="text" name="txtsno" id="txtsno" value="<?php echo $productCode ; ?>" title="Enter product code" onkeypress="validate(event)" ; onfocus="this.select()" /></th>
</tr>
<tr>
<td>Product</td>
<td><input type="text" name="txtpro" value="<?php echo $productValue; ?>" title="Enter product name" ></td>
</tr>
</table>
<div style="text-align:center;margin-top:20px;">
<input type="submit" name="button1" value="Display">
<input type="reset" name="button2" value="Clear" >
</form>
</div>
</div>
</div>
</center>
</body>
</html>