Jump to content

[SOLVED] problem connecting to mysql


kraziekris

Recommended Posts

Hi i am trying to connect to a mysql thats installed on my server

 

i made a script called sqltest.php

 

with

 

<html>

<head> <title>MySQL Test</title> </head>

<body>

<h1>

<?php $connection=mysql_connect("localhost","root","8119604")

or die("Could not connect to MySQL");

echo "Successfully connected to MySQL";

?>

</h1>

</body></html> 

 

 

its held at http://beta.mauritiusnews.co.uk/testsql.php

 

if you click you will see the error i get:

Fatal error: Call to undefined function mysql_connect() in D:\Inetpub\wwwroot\BETA\testsql.php on line 5

 

 

i dont know why my php.ini seems to have the correct extentions????

 

Thanks

 

Chris

Link to comment
Share on other sites

thats right my mistake. I tested this code on my computer and it works

<?php  

$connection=mysql_connect("localhost","root","")or die("Could not connect to MySQL");
if (!isset($connection)){
echo ("not connected");
}else{ 
echo "Successfully connected to MySQL";
}
?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.