View Single Post
  #2 (permalink)  
Old 2008-03-16, 04:05 PM
Xnuiem's Avatar
Xnuiem Xnuiem is offline
Senior Member
 
Join Date: May 2004
Location: DFW, Texas
Posts: 1,096
Xnuiem will become famous soon enough
Send a message via Yahoo to Xnuiem
Default

Change:

Code:
$dbi=mysql_connect ("mysql30.ixwebhosting.com", "mwalid_user", "password");
mysql_select_db ("mwalid_database",$dbi);
to

Code:
$dbi=mysql_connect ("localhost", "mwalid_user", "password") or die("FAILED MYSQL CONNECT");
mysql_select_db ("mwalid_database",$dbi) or die("COULD NOT SELECT DATABASE");
That way you can see if this is actually the issue. It doesnt sound like this area is the problem.
__________________
I rarely give code examples.
No, I have never used IIS or Windows of any kind as a web server. Get a real OS!
Please don't PM me, I won't respond.
Reply With Quote