U kunt proberen om MySQLi
. te gebruiken of PDO
en hun voorbereide verklaring om veiliger te zijn.
Als u alleen MySQL wilt gebruiken, gebruik dan de onderstaande code om uw databaseverbinding te initialiseren.
<?php
$link = mysql_connect('localhost', 'mysql_user', 'mysql_password');
if (!$link) {
die('Could not connect: ' . mysql_error());
}
echo 'Connected successfully';
mysql_close($link);
?>
Zie voor referentie http://php.net/manual/en/function. mysql-connect.php
U kunt ook MySQLi gebruiken
<?php
$con = mysqli_connect("localhost","my_user","my_password","my_db");
// Check connection
if (mysqli_connect_errno())
{
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
?>
Zie voor referentie http://php.net/manual/en/mysqli.construct. php
Als je overweegt om PDO te gebruiken, probeer dan
<?php
try {
$dbh = new PDO('mysql:host=localhost;dbname=test', $user, $pass);
foreach($dbh->query('SELECT * from FOO') as $row) {
print_r($row);
}
$dbh = null;
} catch (PDOException $e) {
print "Error!: " . $e->getMessage() . "<br/>";
die();
}
?>
Zie voor referentie http://php.net/manual/en/pdo.connections. php