首页  >  文章  >  php教程  >  原生php mysql链接

原生php mysql链接

高洛峰
高洛峰原创
2016-11-22 09:54:121585浏览

1.原生连接代码

   $test = "SELECT count(*) count from dede_userphone where phone=".$mobile;
    $coon = @mysql_connect('$host','$user','$password');
    @mysql_query("SET NAMES UTF8");
    @mysql_select_db('dede_qizheng',$coon);
    $res = @mysql_query($test,$coon);
   while($re = mysql_fetch_array($res))
    {
        array_push($arr,$re);
    }
    echo &#39;<pre class="brush:php;toolbar:false">&#39;;
    var_dump($arr);
    exit;


声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn