2

我也解释一下这有点令人困惑,但我仍然会尽力解释。

因为我是 php 和 mysql 的新手,所以我不明白如何完成这项工作。

请看一下图片,并请指导我的卡点。

看到这张图片我希望它能解释我需要什么

简而言之,我需要的是:如何进行数据库连接和更新等!

4

3 回答 3

0

如果您是使用 php 和 mysql 的初学者,以下是您的基本步骤。


MSQLI

首先:为数据库用户、密码、主机、数据库名设置配置

$conn = new mysqli('database_server','database_username','database_password','database_name');

第二:创建一个查询(您可以在此处插入、选择、更新、删除您的查询)..

$result= $conn->query("SELECT * FROM users");

最后:使用 MYSQL 函数显示的记录,如..

while($row = $result->fetch_assoc()){
    echo $row['dabatase_columnname'];
    echo $row['database_columnname'];
}
于 2013-04-08T07:26:48.430 回答
0
//For connection setup
$con=mysql_connect("localhost","root","");//For localhost
//DB choosing
mysql_select_db("sampldb",$con);
//For inserting
mysql_query("insert into table1 (name,rollno) values ('$name','$rollno')");
mysql_query("insert into table2 (name,rollno) values ('$name','$rollno')");

Dont update,insert the values in both the table at the time of inserting.So it is easy for you.
于 2013-04-08T07:28:00.203 回答
0

首先,您需要使用如下查询从第一个表中选择数据:

<?php
//connect to the database server
$objConnect = mysql_connect("localhost","root","Dropje123") or  die(mysql_error()); 
//select the database 
$objDB = mysql_select_db("NAW"); 
//select which data you want to get.
$sql           = "SELECT * FROM tb1";
$objQuery      = mysql_query($sql);
$objResult     = mysql_fetch_array($objQuery);  
?>

然后你需要创建一个像这样的 html 表:

<form id="form" action="insert.php" method="post">
<table width="700" border="1">  
<tr>  
<th width="20"> <div align="center">Roll_no </div></th>  
<th width="98"> <div align="center">Name </div></th> 
<th width="98"> <div align="center">Class </div></th>
<th width="98"> <div align="center">Marks </div></th>
<th width="98"> <div align="center">Subject1 </div></th> 
<th width="98"> <div align="center">Sub2 </div></th> 
<th width="98"> <div align="center">Sub3 </div></th> 
<th width="98"> <div align="center">Adress </div></th> 
<th width="98"> <div align="center">Phone </div></th> 
</th>  
</tr>  
<tr>  
<td><input type="hidden" name="Roll_No" value="<?=$objResult["Roll_No"];?>"></td>  
<td><div  align="center"><?=$objResult["Roll_No"];?></div></td>  
<td><input type="text" name="Name" value="<?=$objResult["Name"];?>"></td> 
<td><input type="text" name="Class" size="20"></td> 
<td><input type="text" name="Marks" size="20"></td> 
<td><input type="text" name="Subject1" size="20"></td>  
<td><input type="text" name="Sub2" size="20"></td>  
<td><input type="text" name="Sub3" size="20"></td>  
<td><input type="text" name="Adress" size="20"></td>  
<td><input type="text" name="Phone" size="20"></td>  
</tr> 
<button type="submit" id="send">Verzenden</button>
</form>

这会将插入的数据发送到 insert.php。insert.php 看起来像这样:

<html>  
<head>  
<title>Insert</title> 
</head>  
<body>      
<?php
mysql_connect('localhost','root','root');
mysql_select_db('yourdb') or die (mysql_error());

$Roll_No           =    $_POST['Roll_No'];
$Name              =    $_POST['Name'];
$Class             =    $_POST['Class'];
$Marks             =    $_POST['Marks'];
$Subject1         =    $_POST['Subject1'];
$Sub2              =    $_POST['Sub2'];
$Sub3              =    $_POST['Sub3'];
$Adress           =    $_POST['Adress'];
$Phone             =    $_POST['Phone'];

$sql = mysql_query("INSERT INTO db2 (Roll_No, Name, Class, Marks, Subject1, Sub2, Sub3, Adress, Phone) VALUES ('".$Roll_No."', '".$Name."', '".$Class."', '".$Marks."','".$Subject1."', '".$Sub2."', '".$Sub3."', '".$Adress."', '".$Phone."')") or die (mysql_error());

if ($sql === false) {

die (mysql_error());

}

else {

echo 'The data is inserted in the database!.<br><br>
}
?>
</body>  
</html> 

您只需稍微编辑此代码即可满足您的需求。我希望这会有所帮助,祝你好运!

编辑:要显示数据库中的所有行,您可以使用这样的 for 循环:

<?php 
$i = 0;  
while($objResult = mysql_fetch_array($objQuery))  
{  
$i++;  
?>  
<tr>  
<td><input type="text" name="Roll_No" value="<?=$objResult["Roll_No"];?>"></td>  
<td><input type="text" name="Name" value="<?=$objResult["Name"];?>"></td> 
<td><input type="text" name="Class" size="20"></td> 
<td><input type="text" name="Marks" size="20"></td> 
<td><input type="text" name="Subject1" size="20"></td>  
<td><input type="text" name="Sub2" size="20"></td>  
<td><input type="text" name="Sub3" size="20"></td>  
<td><input type="text" name="Adress" size="20"></td>  
<td><input type="text" name="Phone" size="20"></td>  
</tr> 
<?php  
}  
?> 

注意:如果您使用此 for 循环,则必须从 sql 部分中删除以下行,否则它将不会显示数据库中的第一行:

$objResult     = mysql_fetch_array($objQuery);

注意 2:这将只显示数据库中的所有行,但如果您提交它,它只会在第二个数据库中插入 1 行。您将需要在 insert.php 中获得某种循环,但我不确定它是如何工作的。

有关 SQL 部分的一些解释,您可以查看本教程!

于 2013-04-08T08:00:59.230 回答