Jonesy44 commented on a Page, My first PHP  -  Dec 13, 2008

Nice to see another PHP scripter out there :L lacks a few on this site hehe.

I must be bored or something.. but this would incorporate all your HTML & PHP together;

<?php
echo '<html>
      <body>';

if (!$_POST) {
  echo '<form action="' .$_SERVER["PHP_SELF"]. '" method="post">
        Age: <input type="text" name="age" />
        <input type="submit" />
        </form>';
}
else {
  $age = $_POST["age"];
  if ($age < 18) {
    echo 'You are too young';
  }
  else {
    echo 'Welcome';
  }
}
?>
 Respond  
Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.