<?
	$link = mysql_connect("localhost", "root", "1234");
	$sql = "use testdb";
	$result = mysql_query($sql);
	$sql = "update testtable set name='$Ename', age='$EAge' where id='$Empno' ";
	$result = mysql_query($sql);
	if ($result)
	{
		echo "䢢㹰ҹŻʺ<br>";
		mysql_close($link);
	}
	else
	{
		echo "ö䢢㹰ҹ<br>";
	}
		echo "<a href=updateload.php>Ѻ˹Ҩ͡䢢</a><br>";
		echo "<a href=Mainfunction.html>Ѻ˹Ҩѡ</a><br>";
?>