View Single Post
phpasks
x10 Sophmore

Join Date: Apr 2008
Posts: 140
Credits: 980
phpasks will become famous soon enough
Quote  
07-02-2008, 09:14 AM
Re: Table does not exists

PHP Code:
<?php
$mySqlServer 
"localhost";
$ServerUserName "rttsrc1";
$ServerPassword "********";
$db "rttsrc1_dbCaseCheckList";

$dbCon 
$dbCon //mysql_connect($mySqlServer,$ServerUserName,$Server Password); $Server Password ==> your problem here.
mysql_connect($mySqlServer,$ServerUserName,$ServerPassword);
if (!
$dbCon )

?>
Your password variable set right then solved your problem.
__________________
Asif Khalyani
http://www.phpasks.com
Reply With Quote
phpasks is offlineReport Post