php查找数据库字段 php查询数据库并输出实例
PHP怎么查询mysql对应的字段?
?php$host_name="服务器名"; //服务器名$host_user="用户名"; //连接服务器的用户名$host_pass="服务器的密码"; //连接服务器的密码$db_name="数据库名"; //服务器上的可用数据库$my_conn=mysql_connect($host_name,$host_user,$host_pass); //连接服务器mysql_select_db($db_name,$my_conn); //选择操作的数据库mysql_query("SET NAMES utf-s"); //设置编码$sql="select tel from members where username=1234";$query=mysql_query($sql,$my_conn);while($row=mysql_fetch_array($query)){ echo $row[0];}?
阿拉尔ssl适用于网站、小程序/APP、API接口等需要进行数据传输应用场景,ssl证书未来市场广阔!成为创新互联的ssl证书销售渠道,可以享受市场价格4-6折优惠!如果有意向欢迎电话联系或者加微信:13518219792(备注:SSL证书合作)期待与您的合作!
php中获取数据库中字段值。
取到值后,在输出的时候%=变量*100%/100,这样用PHP把数据输入,后面跟/100的字符就可以了。
PHP程序:循环查询数据库字段的方法?
完整的代码如下:
$con = mysql_connect('localhost(服务器地址)', '数据库用户名', '数据库密码');
//数据库连接。
if (!$con)
{
die('Could not connect: ' . mysql_error());
}//连接失败输出错误
mysql_select_db('数据库名', $con);
$sql = "select Name from 表名;";
$result = mysql_query($sql,$con);
while($row= mysql_fetch_array($result)){
echo $row['Name'];
}
本文名称:php查找数据库字段 php查询数据库并输出实例
网站URL:http://ybzwz.com/article/ddepdds.html