Hey, speaking of code, is there any reason why this code:
Code: Select all
$email = mysql_query("SELECT email FROM magicalschoolbus WHERE dude='$tinaturner'")
or die(mysql_error());
$oem = mysql_fetch_array( $email )
or die(mysql_error());For reference, here's the what I'm trying to do
Code: Select all
// connect, login, ms.dash, etc.
$email = mysql_query("SELECT email FROM magicalschoolbus WHERE dude='$tinaturner'")
or die(mysql_error());
$oem = mysql_fetch_array( $email )
or die(mysql_error());
$oem['email'] = stripslashes($oem['email']) ;Code: Select all
<input name="email" type="text" value="<?PHP echo $oem['email'] ?>" size="35" />