php更新数据库信息
<html>
<head>
<title>update a record in mysql database</title>
</head>
<body>
<?php
if(isset($_post['update']))
{
$dbhost = 'localhost:3306';
$dbuser = 'root';
$dbpass = 'root';
$conn = mysql_connect($dbhost, $dbuser, $dbpass);
if(! $conn )
{
die('could not connect ');
}
$emp_id = $_post['emp_id'];
$emp_salary = $_post['emp_salary'];
$sql = "update employee ".
"set emp_salary = $emp_salary ".
"where emp_id = $emp_id" ;
mysql_select_db('test_db');
$retval = mysql_query( $sql, $conn );
if(! $retval )
{
die('could not update data');
}
echo "updated data successfully\n";
mysql_close($conn);
}
else
{
?>
<form method="post" action="<?php $_php_self ?>">
<table width="400" border="0" cellspacing="1" cellpadding="2">
<tr>
<td width="100">employee id</td>
<td><input name="emp_id" type="text" id="emp_id"></td>
</tr>
<tr>
<td width="100">employee salary</td>
<td><input name="emp_salary" type="text" id="emp_salary"></td>
</tr>
<tr>
<td width="100"> </td>
<td> </td>
</tr>
<tr>
<td width="100"> </td>
<td>
<input name="update" type="submit" id="update" value="update">
</td>
</tr>
</table>
</form>
<?php
}
?>
</body>
</html>
