IT貓撲網(wǎng):您身邊最放心的安全下載站! 最新更新|軟件分類|軟件專題|手機(jī)版|論壇轉(zhuǎn)貼|軟件發(fā)布

您當(dāng)前所在位置: 首頁網(wǎng)絡(luò)編程PHP編程 → PHP訪問MYSQL數(shù)據(jù)庫快速入門

PHP訪問MYSQL數(shù)據(jù)庫快速入門

時(shí)間:2015-06-28 00:00:00 來源:IT貓撲網(wǎng) 作者:網(wǎng)管聯(lián)盟 我要評論(0)

  連接

  //下面使用了函數(shù)庫mysqli,所以需要將php.ini文件中的extension=php.mysqli 打開
  //這里采用了面向?qū)ο蟮恼Z法,當(dāng)然,mysqli也支持面向過程的語法
  @ $db = new mysqli('localhost', 'root', 'tograce', 'books');
  //以上代碼實(shí)例化了mysqli類并且創(chuàng)建了到主機(jī)'localhost'的連接,該連接使用的用戶名為和密碼分別是:root,tograce,同時(shí)連接上books數(shù)據(jù)庫
  if (mysqli_connect_errno())
  {
     echo 'Error: Could not connect to database.  Please try again later.';
     exit;
  }
  else{echo "gong xi,Connected successfully";}
 
  $query = "select * from books";
  $result = $db->query($query);
  $num_results = $result->num_rows;
  echo '

Number of books found: '.$num_results.'

';

  $result->free();
  $db->close();
?>

  插入數(shù)據(jù)

  摘自第11章



  Book-O-Rama Book Entry Results


Book-O-Rama Book Entry Results


  // create short variable names
  $isbn=$_POST['isbn'];
  $author=$_POST['author'];
  $title=$_POST['title'];
  $price=$_POST['price'];

  if (!$isbn || !$author || !$title || !$price)
  {
     echo 'You have not entered all the required details.
'
          .'Please go back and try again.';
     exit;
  }
  if (!get_magic_quotes_gpc())
  {
    $isbn = addslashes($isbn);
    $author = addslashes($author);
    $title = addslashes($title);
    $price = doubleval($price);
  }

  @ $db = new mysqli('localhost', 'root', 'tograce', 'books');

  if (mysqli_connect_errno())
  {
  

   echo 'Error: Could not connect to database.  Please try again later.';
     exit;
  }

  $query = "insert into books values
            ('".$isbn."', '".$author."', '".$title."', '".$price."')";
  $result = $db->query($query);
  if ($result)
      echo  $db->affected_rows.' book inserted into database.';

  $db->close();
?>

關(guān)鍵詞標(biāo)簽:PHP,MYSQL數(shù)據(jù)庫

相關(guān)閱讀

文章評論
發(fā)表評論

熱門文章 plsql developer怎么連接數(shù)據(jù)庫-plsql developer連接數(shù)據(jù)庫方法 plsql developer怎么連接數(shù)據(jù)庫-plsql developer連接數(shù)據(jù)庫方法 2021年最好用的10款php開發(fā)工具推薦 2021年最好用的10款php開發(fā)工具推薦 php利用淘寶IP庫獲取用戶ip地理位置 php利用淘寶IP庫獲取用戶ip地理位置 在 PHP 中使用命令行工具 在 PHP 中使用命令行工具

相關(guān)下載

    人氣排行 詳解ucenter原理及第三方應(yīng)用程序整合思路、方法 plsql developer怎么連接數(shù)據(jù)庫-plsql developer連接數(shù)據(jù)庫方法 PHP中防止SQL注入攻擊 PHP會話Session的具體使用方法解析 PHP運(yùn)行出現(xiàn)Notice : Use of undefined constant 的解決辦法 PHP如何清空mySQL數(shù)據(jù)庫 CakePHP程序員必須知道的21條技巧 PHP采集圖片實(shí)例(PHP采集)