Hello everyone i am trying to position my text, but as soon as i add another " to my code i get a parse error everytime , and i wonder what i am doing wrong
Here's what my original code looks like :
{
$war1="<font color='grey'>'".$login."' already exist!</font>";
$db->select_db($db_name);
}
else
{
$pass1 = ereg_replace( "[A-Za-z0-9]", "", $POST['password'] );
$pass2 = ereg_replace( "[A-Za-z0-9]", "", $POST['password2'] );
if ($pass1=='')
{
$war2="<font color='grey'>Type in a password!</font>";
}
And here's the code that i am trying to add.
{
$war2="<font color='grey'>Type in a password!</font>";
}
else
{
if ($pass1<>$pass2)
{
$war2="<div style=" top: 97; left: 17; position: absolute;} z-index: 1; visibility: show;"> Password don't match</div>";
}
Help anyone?