| Php Tutorial #3 + #4 -
11-05-2006, 01:08 PM
Tutorial 3 <?php
$applicant = "Chris"
echo ("The applicant's name is $applicant") ;
?> this types The applicant's name is Chris. Tutorial 4 <html>
<?php
echo ("<SCRIPT LANGUAGE= 'JavaScript'> alert ('Error!') ; </SCRIPT>") ;
?> this pops up an error message saying Error! |