dazz_club Posted April 7, 2008 Share Posted April 7, 2008 Hi guys and girls, i am trying to connect to a server with this script <?php require("constants.php"); //connection the database $connection = mysqli_connect("localhost", "xxx", "xxx" , "xxx" ); if (!$connection){ die("Database connection failed; " . mysqli_connect_errno()); } ?> i have checked out the php version, which is 4.4.3, is it k to use mysqli_connect in this case?? as when i checked out the site an error was displayed Fatal error: Call to undefined function: mysqli_connect() in /home/base/public_html/test/admin/includes/connection.php on line 4 I have then checked out line 4 and it is this $connection = mysqli_connect("localhost", "xxx", "xxx" , "xxx" ); Any ideas why this is happening?? kind regards Dazzclub Link to comment https://forums.phpfreaks.com/topic/100016-solved-php-version-443/ Share on other sites More sharing options...
cooldude832 Posted April 7, 2008 Share Posted April 7, 2008 put on your reading glasses and answer your own question http://us2.php.net/manual/en/ref.mysqli.php Link to comment https://forums.phpfreaks.com/topic/100016-solved-php-version-443/#findComment-511471 Share on other sites More sharing options...
dazz_club Posted April 7, 2008 Author Share Posted April 7, 2008 lol, i know dude, ive just done it. didnt mean to be lazy Link to comment https://forums.phpfreaks.com/topic/100016-solved-php-version-443/#findComment-511485 Share on other sites More sharing options...
dazz_club Posted April 7, 2008 Author Share Posted April 7, 2008 its the mysql version, mysql- requires 4.1.3, thats why it doesn work, my host only offers 4 o well Link to comment https://forums.phpfreaks.com/topic/100016-solved-php-version-443/#findComment-511491 Share on other sites More sharing options...
cooldude832 Posted April 7, 2008 Share Posted April 7, 2008 its the mysql version, mysql- requires 4.1.3, thats why it doesn work, my host only offers 4 o well I should be amazed you solved a problem on your own Link to comment https://forums.phpfreaks.com/topic/100016-solved-php-version-443/#findComment-511507 Share on other sites More sharing options...
dazz_club Posted April 7, 2008 Author Share Posted April 7, 2008 all right all right Link to comment https://forums.phpfreaks.com/topic/100016-solved-php-version-443/#findComment-511527 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.