将数据放入我的数据库phpmyadmin

时间:2012-03-01 11:28:05

标签: phpmyadmin

我将这些值放入我的数据库但是当打开我的phpmy管理员并转到我的表时没有valuse addet到我的数据库我的数据在哪里?

<!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=utf-8" />
<title>register
</title>
</head>

<body>
<?php
mysql_connect('localhost','root','');
mysql_select_db('babak');
?>

thanx for your registering &nbsp;<?php
echo $_POST["name"];
?><br />    
your email is <?php echo $_POST["E-MAIL"];
?><br />
<?php
$sql="INSERT INTO users(id,pass) VALUES ($_POST[id],$_POST[pass])"; 


?>
</body>
</html>

2 个答案:

答案 0 :(得分:0)

您需要执行sql语句。

   mysql_execute($sql);

答案 1 :(得分:0)

您需要创建一个必须作为参数传递给的连接变量 'select_database_db' 命令

//Connect to the server.
$connection = mysql_connect('localhost', 'root', '');

//Select our database.
mysql_select_db('babak', $connection);