以下的文章主要介绍的是如何用php来对MySQL存储过程进行调用,我前几天在一个可信度特别好的网站看见关于php来对MySQL存储过程进行调用的资料,觉得挺好,就拿出来供大家分享。
- <!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=gb2312" />
- <title>无标题文档</title>
- </head>
- <body>
- <table align="center" border=1>
- <caption><h3>用户管理</h3></caption>
- <tr >
- <td align="center" colspan="7">
- <a href="adduser.html">添加记录</a>
- </td>
- </tr>
- <tr>
- <td align="center"><font style="FONT-WEIGHT: bold; FONT-SIZE: 12px; FONT-FAMILY: 黑体">姓名</font></td>
- <td align="center"><font style="FONT-WEIGHT: bold; FONT-SIZE: 12px; FONT-FAMILY: 黑体">性别</font></td>
- <td align="center"><font style="FONT-WEIGHT: bold; FONT-SIZE: 12px; FONT-FAMILY: 黑体">年龄</font></td>
- <td align="center"><font style="FONT-WEIGHT: bold; FONT-SIZE: 12px; FONT-FAMILY: 黑体">电话</font></td>
- <td align="center"><font style="FONT-WEIGHT: bold; FONT-SIZE: 12px; FONT-FAMILY: 黑体">地址</font></td>
- <td align="center" colspan="2"><font style="FONT-WEIGHT: bold; FONT-SIZE: 12px; FONT-FAMILY: 黑体">编辑</font></td>
- </tr>
- <?php
通知服务器客户端可以处理由多语句或者MySQL存储过程执行生成的多结果集。当打开CLIENT_MULTI_STATEMENTS时,这个标志自动的被打开。可以在本表后查看更多关于该标志位的信息。)
- define('CLIENT_MULTI_RESULTS', 131072);
- $link = mysql_connect("localhost", "root", "123",1,CLIENT_MULTI_RESULTS) or die("数据库连接失败: ".mysql_error());
- $query=mysql_query("call bbs.p_alluserinfo()") or die("Query failed:" .mysql_error());
- if(mysql_num_rows($query)>0)
- {
- $info=mysql_fetch_array($query);
- do
- {
- echo "<tr>";
- echo "<td>$info[user_Name]</td>";
- echo "<td>$info[user_Sex]</td>";
- echo "<td>$info[user_Age]</td>";
- echo "<td>$info[user_Tel]</td>";
- echo "<td>$info[user_Adderss]</td>";
- echo "<td><a href='uduser.php?uid=$info[user_ID]'>更新</a></td>";
- echo "<td><a href='deluser.php?uid=$info[user_ID]'>删除</a></td>";
- echo "</tr>";
- }while($info=mysql_fetch_array($query));
- echo "</table>";
- }
- else
- {
- echo "<tr>没有记录</tr></table>";
- }
- ?>
- </table>
- </body>
- </html>
以上的相关内容就是对如何用php来对MySQL存储过程进行调用的介绍,望你能有所收获。
【编辑推荐】