PHP5+Mysql 表格显示查询结果
server:localhostserver_user:rootserver_passwd:密码空database:cxtable:lhcxlhcx包含字段:ID,cha...
server:localhost
server_user:root
server_passwd:密码空
database:cx
table:lhcx
lhcx包含字段:ID,changneiliaohao,kehuliaohao,kehu
SQL:select * from lhcx where changneiliaohao = '';
提交查询表单<form>:
ID:name = 'text1'
changneiliaohao:name = 'text2'
kehuliaohao:name = 'text3'
kehu:name = 'text4'
求助:以提交的changneiliaohao信息为查询条件,结果可能不唯一,用表格显示查询结果。
不知道表达清楚了没有,不明白我再补充。
还是新手,很多地方不明白,如果可以,帮帮忙吧。 展开
server_user:root
server_passwd:密码空
database:cx
table:lhcx
lhcx包含字段:ID,changneiliaohao,kehuliaohao,kehu
SQL:select * from lhcx where changneiliaohao = '';
提交查询表单<form>:
ID:name = 'text1'
changneiliaohao:name = 'text2'
kehuliaohao:name = 'text3'
kehu:name = 'text4'
求助:以提交的changneiliaohao信息为查询条件,结果可能不唯一,用表格显示查询结果。
不知道表达清楚了没有,不明白我再补充。
还是新手,很多地方不明白,如果可以,帮帮忙吧。 展开
2个回答
展开全部
你是让给你写代码吗?
mysql_connect('localhost','root');
$sql="select * from cx.lhcx where changneiliaohao like '%{$_REQUEST['text2']}%'";
$res=mysql_query($sql);
echo '<table border=1>';
while ($row=mysql_fetch_row($res)) echo '<tr><td>'.implode('<td>',$row);
echo '</table>';
mysql_free_result($res);
mysql_close();
mysql_connect('localhost','root');
$sql="select * from cx.lhcx where changneiliaohao like '%{$_REQUEST['text2']}%'";
$res=mysql_query($sql);
echo '<table border=1>';
while ($row=mysql_fetch_row($res)) echo '<tr><td>'.implode('<td>',$row);
echo '</table>';
mysql_free_result($res);
mysql_close();
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询