php mysql_connect()
Posted 码哥的笔记
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php mysql_connect()相关的知识,希望对你有一定的参考价值。
<?php
$q=$_GET["q"];
$con = @mysql_connect(‘localhost‘, ‘root‘, ‘root‘);
if (!$con)
{
die(‘Could not connect: ‘ . mysql_error());
}
mysql_select_db("job", $con);
$sql="SELECT * FROM world WHERE id = ‘".$q."‘";
$result = mysql_query($sql);
echo "<table border=‘1‘>
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Age</th>
<th>Hometown</th>
<th>Job</th>
</tr>";
while($row = mysql_fetch_array($result))
{
echo "<tr>";
echo "<td>" . $row[‘FirstName‘] . "</td>";
echo "<td>" . $row[‘LastName‘] . "</td>";
echo "<td>" . $row[‘Age‘] . "</td>";
echo "<td>" . $row[‘Hometown‘] . "</td>";
echo "<td>" . $row[‘Job‘] . "</td>";
echo "</tr>";
}
echo "</table>";
mysql_close($con);
以上是关于php mysql_connect()的主要内容,如果未能解决你的问题,请参考以下文章
mysql_connect 不工作如何用 mysql 修复 [重复]
php中@mysql_connect与mysql_connect有什么区别
雪豹:致命错误:调用未定义函数 mysql_connect()