I'm new to php and really could use some help please.
Here is what I'm trying to do.
I am setting an unqiue ID at the top of a team.php file that I would like to be using within an include file I am calling from the team.php page.
Here is the php at the top of team.php that is used to lock down the user ID for that website page:
<?
$userid=101010;
?>
Then in the body of the team.php file I place an include that includes a mlinks.php file that contains a URL like this:
<a href="http://www.qksrv.net/click-1148924-44074?SID=<?=$userid?></a>
The php in the mlinks.php doesn't seem to recognize the unique ID set at the top of team.php when included. I need the php to insert 101010 into the url when clicked on the team.php page.
Anybody have any ideas how to accomplish this?
Thank you very much for your time.