Hi,
I have a form, and I also have a function that I am using to decide if a var is to show or not show based on if its set
isset_var( $var ) right now I just have this at the top of the first form.
function isset_var($var)
{
if(isset($var))
{
return( $var );
}
else
{
$var = '';
return( $var );
}
}
general_form.php I am only going to show two input as its not need for me to show all of them
<!-- <label for="e_id">Entity Identification: </label> -->
<input type="hidden" value=" '. $e_id .' " id="e_id" name="e_id" />
<label for="p_fin">Parent Fedral Identification Number: </label>
<input type="text" value="' . $p_fin .'" id="p_fin" name="p_fin" size="9" maxlength="9" />
how do I put me function into the this, I am using echo ' ': to display the form?
Sincerely,
Christopher