PHP php mysql / mysqli查询
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP php mysql / mysqli查询相关的知识,希望对你有一定的参考价值。
function sqlQuery( $sql )
{
if( in_array( 'mysql', $GLOBALS[ 'loaded_extensions' ] ) )
{
$query = mysql_query( $sql ) or die(
"<pre><font color=\"red\"><b>Invalid SQL:</b>\n\n("
. mysql_errno()
. ' ) '
. mysql_error()
. "\n\n"
. "<b>Query:</b>\n"
. eregi_replace( "\t", ' ', $sql )
. '</font></pre>' );
}
elseif( in_array( 'mysqli', $GLOBALS[ 'loaded_extensions' ] ) )
{
$query = mysqli_query( $GLOBALS[ 'dbHandle' ], $sql ) or die(
"<pre><font color=\"red\"><b>Invalid SQL:</b>\n\n("
. mysqli_errno( $GLOBALS[ 'dbHandle' ] )
. ' ) '
. mysqli_error( $GLOBALS[ 'dbHandle' ] )
. "\n\n"
. "<b>Query:</b>\n"
. eregi_replace( "\t", ' ', $sql )
. '</font></pre>' );
}
return $query
}
以上是关于PHP php mysql / mysqli查询的主要内容,如果未能解决你的问题,请参考以下文章
php mysql/mysqli查询
php使用mysql和mysqli连接查询数据
最近在学习php,其中使用了MYSQLi扩展,注意是MYSQLi不是MYSQL(因PHP7已经不支持MYSQL扩展了)。
php输出mysqli查询出来的结果
php 连接mysql(查询 增删改)
php mysql 查询