How about this.. sorry to bug!
What if I wanted to print certain things if the variable contained a value?
Say that a user did not fill in the age form field. So, I would not want the php to write the same line as if the field had input.
<IF AGE VARIABLE PRESENT>
print My name is $name, and I am $age. My e-mail is $email.
<IF AGE VARIABLE NOT PRESENT>
print My name is $name. My e-mail is $email and I don't know how hold I am!
It would need to be like if $email > 0 then print "blah, blah";
I'm not PHP writer, so I know nothing, but there would need to be some if/then so it could determine if the variable had any value.
Basically, I want to print something different if the age variable does/doesn't contain a value.
Thanks in advance!
Bryan