博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
new mysqli_ and 旧mysql
阅读量:6220 次
发布时间:2019-06-21

本文共 1496 字,大约阅读时间需要 4 分钟。

旧的php处理语法:

1.

<select name="s" onChange="redirec()">

<option selected>请选择</option>
<?php
$conn=mysql_connect("localhost","root",""); //连接MySQL服务器
mysql_select_db("PXSCJ",$conn); //选择PXSCJ数据库
mysql_query("SET NAMES gb2312"); //将字符集设为gb2312
$sql="select distinct 专业 from XSB";    // sql 内容
$result=mysql_query($sql);                 //定义接口
while($row=mysql_fetch_array($result))           //定义循环
{
$ZY=$row['专业'];                                         //打印结果    
echo "<option value='$ZY'>$ZY</option>";
}
?>

 

2.新的php 的处理语法

sample 1.

<?php

ini_set('display_errors',1);
ini_set('display_startup_errors',1);
error_reporting(-1);
//print_r($_GET);
//exit;
$XH=$_GET['XH']; //取得XH的值
$KCM=$_GET['KCM']; //取得KCM的值
header('Content-Type:text/html;charset=uft8'); //发送header,将编码设为uft8
//$db=new PDO("mysql:host=localhost;dbname=PXSCJ","root","");
$conn= new mysqli('localhost','root','','PXSCJ');                              //连接MySQL服务器
if (mysqli_connect_errno($conn))                                         
{
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
mysqli_set_charset($conn, "utf8");                                                     //将字符集设为uft8
$sql="select 成绩 from CJB where 学号='$XH' and 课程号=(select 课程号 from KCB where 课程名='$KCM')";   // sql 内容
if ($result=mysqli_query($conn,$sql))                                                //定义接口
{
// Fetch one and one row
while ($row= $result->fetch_object())                                               //定义循环
{
printf($row->成绩);                                                                         //打印结果
}
// Free result set
mysqli_free_result($result);
}

mysqli_close($conn);

?>

 

 

sampe 2.

sample 3: http://www.blogjava.net/nkjava/archive/2015/01/20/422291.html sampe 4: http://www.w3cschool.cn/php/func-mysqli-fetch-row.html

 

转载于:https://www.cnblogs.com/feiyun8616/p/6781811.html

你可能感兴趣的文章
宏常量,宏替换,const常量
查看>>
数学函数最小值为什么可以通过导数=0来求出呢?
查看>>
计算机操作系统(三)--- 处理器体系结构(一)
查看>>
poj1564
查看>>
poj1081
查看>>
poj1731
查看>>
day10:vcp考试
查看>>
BestCoder Round #74 (div.2)
查看>>
Kruskal HDOJ 1863 畅通工程
查看>>
解决MyEclipe出现An error has occurred,See error log for more details的错误
查看>>
BZOJ4942 & UOJ314:[NOI2017]整数——题解
查看>>
109.110.100.56 samba用户名 PAS, 密码 111111
查看>>
MySql的replace into 语句
查看>>
410. Split Array Largest Sum
查看>>
转 Python爬虫实战二之爬取百度贴吧帖子
查看>>
hdu 4960 记忆化搜索 DP
查看>>
layuiadmin更新echarts
查看>>
beanstalk源码剖析——概述
查看>>
[转] socket异步编程--libevent的使用
查看>>
linux下安装mysql详细步骤
查看>>