Jump to content

How to connect web pages to MySQL in PHP


tmyonline

Recommended Posts

Hello all!

 

I'm new to this.  I'm having a few days of nightmare in connecting Dreamweaver to MySQL database.  I'm pretty sure that I have the correct MySQL Server name, user-id & password,...  I keep receiving the message "an unidentified error has occured", not so intuitive.

 

I'm wondering if there is a way around this, say, doing it directly in PHP with a few lines of code,...  I'm open to all possible solutions.

 

Many thanks.

 

Tommy

Link to comment
https://forums.phpfreaks.com/topic/61842-how-to-connect-web-pages-to-mysql-in-php/
Share on other sites

 

Try this,

 

$usr = "root";

$pwd = "dbpassword";

$db = "dbname";

$host = "localhost";

 

 

// Connect to MySQL

$cid = mysql_connect($host,$usr,$pwd);

if (!$cid) { echo("ERROR: " . mysql_error() . "\n"); }

 

 

 

Then in your queries do this:

 

      $SQL = "SELECT * FROM tablename";

    $result = mysql_db_query($db,$SQL,$cid);

    while ($row = mysql_fetch_assoc($result))

{

echo  $row['fieldname];

}

 

 

 

 

 

Try this,

 

$usr = "root";

$pwd = "dbpassword";

$db = "dbname";

$host = "localhost";

 

 

// Connect to MySQL

$cid = mysql_connect($host,$usr,$pwd);

if (!$cid) { echo("ERROR: " . mysql_error() . "\n"); }

 

 

 

 

Then in your queries do this:

 

      $SQL = "SELECT * FROM tablename";

    $result = mysql_db_query($db,$SQL,$cid);

    while ($row = mysql_fetch_assoc($result))

{

echo  $row['fieldname];

}

 

 

 

if you will be using the same database frequently, try this:

 

$usr = "root"; 
$pwd = "dbpassword";
$db = "dbname";
$host = "localhost";


// Connect to MySQL
$cid = mysql_connect($host,$usr,$pwd);
if (!$cid) { echo("ERROR: " . mysql_error() . "\n"); 
} else {
    mysql_select_db($db,$cid);
}

$SQL = "SELECT * FROM tablename";
     $result = mysql_query($SQL) or die(mysql_error());
    while ($row = mysql_fetch_assoc($result))
 {
 echo  $row['fieldname];
 }

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.