php-PHP无法显示SQL表中的内容
程序员文章站
2022-05-22 11:57:17
...
phpsql
个人简历
td{ border:#666 solid 1px;}$(function(){ $(".button").mouseover(function(){$(this).css("backgroundColor","red")}) $(".button").mouseout(function(){$(this).css("backgroundColor","")})})
提示错误是
Notice: Undefined variable: row in C:\wamp\www\test\PHP26\main.php on line 43
我要用PHP做个表格,显示出SQL表里的数据。
用了屏蔽警告。但是无法显示SQL的数据。
main.php
error_reporting(E_ALL & ~E_NOTICE);
$link_ID = mysql_pconnect('localhost','root','');
if(mysql_select_db('informat',$link_ID)){
echo "OK";
}else{
echo "NG";
}
$sql = "select * from users ";
$Query_ID = mysql_query($sql);
$num= mysql_num_rows($Query_ID);
while($Record = mysql_fetch_array($Query_ID)){}
?>
个人简历
td{ border:#666 solid 1px;}$(function(){ $(".button").mouseover(function(){$(this).css("backgroundColor","red")}) $(".button").mouseout(function(){$(this).css("backgroundColor","")})})
个人简历
名字 |
|
性别 |
|
籍贯 |
|
政治面貌 |
|
学历 |
|
出生日期 |
|
身高 |
|
爱好 |
|
学校 |
|
专业 |
|
地址 |
|
技能 |
|
电话 |
|
|
|
邮箱 |
|
不知道哪里写错了。或者说是SQL写错了?
推荐阅读
-
显示 Sql Server 中所有表中的信息
-
vue2.0 element-ui中el-select选择器无法显示选中的内容(解决方法)
-
SQL中NTEXT字段内容显示<long text>的原因
-
DM数据库表中的CLOB字段,使用ajax查询并显示结果时无法获取该字段值
-
针对mysql数据库无法在表中插入中文字符的解决方案(彻底解决:java.sql.SQLException: Incorrect string value: ‘\xF0\x9F\x92\x94‘ )
-
MVC3+Linq to sql 显示数据库中数据表的数据
-
php-PHP无法显示SQL表中的内容
-
Thinkphp是否因为防范xss的原因导致每次用编辑器提交内容后都会对某些符号转义从而导致无法编辑器中编辑的图片无法正常显示?
-
SQL Server2005打开数据表中的XML内容时报错的解决办法
-
关于SQL Server打开数据表中的XML内容时报错的解决办法