Thread: true noob
View Single Post
Old 08-22-2003, 11:07 AM   #2 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,530
sde is on a distinguished road
PHP Code:
<?php 
echo( "Welcome to our Web site,$firstname $lastname!" );
?>
for this to work.. you must go into your php.ini file and set register_globals = on

otherwise, use the code below:
PHP Code:
<?php 
echo( "Welcome to our Web site,$_GET['firstname'] $_GET['lastname']!" );
?>
happy coding =)
__________________
Mike
sde is offline   Reply With Quote