User Tools

Site Tools


classes:general:dbsamples:php_mysql

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
classes:general:dbsamples:php_mysql [2017/01/19 20:53] localadminclasses:general:dbsamples:php_mysql [2017/03/21 06:23] (current) localadmin
Line 1: Line 1:
 ====== PHP example for MySQL database connection ====== ====== PHP example for MySQL database connection ======
 +
 +<code>
 +<head>
 +</head>
 +<body>
  
 <?php <?php
Line 5: Line 10:
     // Make a connection to the database     // Make a connection to the database
     // the values here MUST BE CHANGED to match the database and credentials you wish to use     // the values here MUST BE CHANGED to match the database and credentials you wish to use
- 
     $mysqli = new mysqli("localhost", "user", "password", "database");     $mysqli = new mysqli("localhost", "user", "password", "database");
     if ($mysqli->connect_errno)     if ($mysqli->connect_errno)
Line 21: Line 25:
     if !($result)     if !($result)
     {     {
-       echo "Query execution failed: (" . $mysqli->errno . ") " . $mysqli->error;+      echo "Query execution failed: (" . $mysqli->errno . ") " . $mysqli->error;
     }     }
  
Line 38: Line 42:
 ?> ?>
  
 +</body>
 +</html>
 +</code>
classes/general/dbsamples/php_mysql.1484880814.txt.gz · Last modified: 2017/01/19 20:53 by localadmin