Hello, I am new to PHP.
I have gone so far but need help on this issue.
I have the following statement:
<a href="http://www.facebook.com/pages/<?=$FACEBOOK_NAME?>/<?=$FACEBOOK_ID?>" Target = "blank">
What I would like to do is:
IF <?=$FACEBOOK_ID?> is empty THEN load the following link:
<a href="http://www.facebook.com/<?=$FACEBOOK_NAME?>" Target = "blank">
ELSE load
<a href="http://www.facebook.com/pages/<?=$FACEBOOK_NAME?>/<?=$FACEBOOK_ID?>" Target = "blank">
The reason is to give the option of loading a profile or a page in facebook.
This is probably real simple...thank you for you help.
Thank you again.