[PHP]
Other: <input name="school_ty pe_other" size="30" maxlength="75"
value="<?php
if ($_POST['hasReviewedApp licant']) echo $_POST['school_type_ot her'];
else echo str_replace('"' , '"', str_replace('\\ ', '',
$result[0]->school_type_ot her));
?>">
[/PHP]
I verified via both var_dump() and print_r() that
$_POST['hasReviewedApp licant'] = 1 and that $_POST['school_type_ot her']
= null, even when you enter something into the text field, it's still
null!
Can someone tell me what on earth I did wrong this time? I'm lost here!
Thanx
Phil
Other: <input name="school_ty pe_other" size="30" maxlength="75"
value="<?php
if ($_POST['hasReviewedApp licant']) echo $_POST['school_type_ot her'];
else echo str_replace('"' , '"', str_replace('\\ ', '',
$result[0]->school_type_ot her));
?>">
[/PHP]
I verified via both var_dump() and print_r() that
$_POST['hasReviewedApp licant'] = 1 and that $_POST['school_type_ot her']
= null, even when you enter something into the text field, it's still
null!
Can someone tell me what on earth I did wrong this time? I'm lost here!
Thanx
Phil
Comment