php怎么查询字段有无

php查询字段有无的实现方法:1、创建一个php示例文件;2、连接数据库;3、通过“select * from”语句查询某值;4、使用“if (!mysql_num_rows($result)){…}else{…}”语句判断该值是否存在即可。

php入门到就业线上直播课:进入学习
Apipost = Postman + Swagger + Mock + Jmeter 超好用的API调试工具:点击使用

本教程操作环境:windows7系统、PHP8.1版、Dell G3电脑。

php怎么查询字段有无?

php 查询数据库表 判断 某值是否存在

代码如下:

<?php  
$sql="select * from checklist where game_id=$gid and task='$task' and status='$status'";  
$result=mysql_query($sql);  
$row = mysql_fetch_array($result, MYSQL_ASSOC);  
    if (!mysql_num_rows($result))  
        {  
            echo "record doesn't exist~~~~~!!!!!!";  
        }  
    else  
        {             // echo mysql_num_rows($result)."
";  
            echo $row['game_id'];  
            echo $row['task'];  
        }  
?>

登录后复制

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » php怎么查询字段有无
温馨提示您:本站所载文章、数据仅供参考,如果有文章侵犯了您的权益,请来信告知我们删除,联系邮箱:976157886@qq.com
Copyright © 2023 自学咖网 - All rights reserved 浙ICP备2023005527号