I have a weird error on my PHP page
http://si gn go l d.com/n ew/ind ex.php (remove the spaces)
in firefox i get a pop up telling me "530 in correct login"
the php code on that page looks like this:
<?php
$link = mysql_connect("", "", "") OR DIE("Unable to connect to the database");
mysql_select_db("db1518312
59");
$sqlc = "select * from hometext";
$rsc = mysql_query($sqlc) or die(mysql_error());
$rowc = mysql_fetch_array($rsc);
$hometext = $rowc['hometext'];
?>
<span class="style4"><? echo $sValue = stripslashes($hometext); ?></span></p>
The username and password are correct because it pulls the text in from the database. Any idea what is going on?
Start Free Trial