tmyonline Posted July 26, 2007 Share Posted July 26, 2007 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 Quote Link to comment Share on other sites More sharing options...
maliary Posted July 26, 2007 Share Posted July 26, 2007 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]; } Quote Link to comment Share on other sites More sharing options...
ViN86 Posted July 26, 2007 Share Posted July 26, 2007 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]; } Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.