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 =)