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
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];

}

 

 

 

 

Link to comment
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];

}

 

 

 

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];
 }

 

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.