mysqlphp查询
数据库中有张表有主键pmcode还有其他属性,我现在想通过pmcode判断某个用户是否存在,存在的话将其信息取出,代码如下:
//拆分发来的信息得到会员卡号 $arry=explode(+,$form_content); $memberid =$arry[1]; //连接数据库 $link=mysql_connect(sae_mysql_host_m.':'.sae_mysql_port,sae_mysql_user,sae_mysql_pass); if($link) { mysql_select_db(sae_mysql_db,$link); //查询数据 $result1=mysql_query(select * from numbers where pmcode = '.$memberid.';); $num_result = mysql_num_rows($result1); if($num_result==1){ // $row= $result1->fetch_assoc(); $row=mysql_fetch_row($result1); $result_str=您的会员--信息如下:\n\n卡号:$row[pmcode].\n姓名:.$row[names].\n等级:.$row[4].\n积分:$a[5]; $resultstr = sprintf($texttpl, $fromusername, $tousername, $time, $msgtype,$result_str); echo $resultstr; exit; }else{ $msgtype = text; $resultstr = sprintf($texttpl, $fromusername, $tousername, $time, $msgtype,--select * from numbers where pmcode = '.$memberid.'); echo $resultstr; exit; } } else{ echo 连接数据库失败.mysql_error; } mysql_close($link); }
可是不管怎样测试都取不到数据,求大神修改。