I am new to this whole programming, PHP, MySql deal. So, if I don't say it how I should please bear with me. I ran MySql.PHP through my site and web browser and get this >"Fatal error: Call to undefined function mysql_connect() in D:web sitemysql-php-test.php on line 2"
I have no idea what I am really doing. Here's the code for the file.
<?php
$link = mysql_connect('localhost', 'username', 'password');
if (!$link) {
die('Could not connect: ' . mysql_error());
}
echo 'Connected successfully';
mysql_close($link);
?>
I of course change the username and password to the user and password for my database. The database is on port 3306. What am I doing wrong? If nothing, then any ideas on what's going on?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…