php判斷查詢結果是否為空的方法:1、使用sql方法,程式碼為【select count(people) c from people where people='樂樂'】;2、使用php方法,程式碼為【$p=$_POST['p'];】。
【相關學習推薦:#php程式設計(影片)】
php判斷查詢結果是否為空的方法:
#1、
select count(people) c from people where people='乐乐'
上面這條sql就是原理
2、
php利用程式碼
<?php $p=$_POST['p']; $cnx = new PDO("odbc:Driver={SQL Server};Server=;Database=;",'',''); $ps=$cnx->query("select count(people) c from people where people='".$p."'"); foreach($ps as $s){ if ($s['c']=='0'){ echo "用户可用"; }else{ echo "此用户名已存在"; } } ?>
#想了解更多程式設計學習,請關注php培訓欄位!
以上是php如何判斷查詢結果是否為空的詳細內容。更多資訊請關注PHP中文網其他相關文章!