1. PHP はデータベースに接続します
$dbhost = 'localhost';
$dbuser = 'root'; //mysql ユーザー名
$dbpass = '123456'; //mysql パスワード
$ dbname = 'data'; //mysql ライブラリ名
//ローカルデータベースに接続します
$GLOBALS["conn"] = mysql_connect($dbhost,$dbuser,$dbpass); //データベースを開きます
mysql_select_db ($dbname,$GLOBALS["conn"]);
?>
2.php はデータベース内の特定のフィールドの値を読み取ります
// データの列を読み取ります
$sql= "select * from ec_admin";
$result = mysql_query($sql,$GLOBALS["conn"]);
printf("ユーザー名: %s
n", mysql_result($result,3, "ユーザー名 "));
printf("パスワード: %s
n", mysql_result($result,3,"UserPass"));
?>
php
$sql="ec_admin(UserName,UserPass) 値に挿入('liugongxun2','jakemary2')";
$result=mysql_query($sql,$GLOBALS["conn"]); (mysql_error() );
4,php while ループ
$sql="select * from ec_admin" = mysql_query($sql,$GLOBALS["conn "]);
while($myrow = mysql_fetch_row($result))
{
printf("ユーザー名 %s %s パスワード
",$myrow[1],$myrow[2]);
}
?>
5,php do while ループ
$sql="select * from ec_admin" = mysql_query($sql,$GLOBALS["conn"]); if( $myrow = mysql_fetch_array($result))
{
do
{
printf("ユーザー名 %s %s パスワード
",$myrow["ユーザー名"],$myrow["ユーザーパス"]) ;
}while($myrow = mysql_fetch_array($result));
}
?>
6,php
if ($submit)
{}
?
http://www.bkjia.com/PHPjc/319209.html
www.bkjia.com
true
http://www.bkjia.com/PHPjc/319209.html