hi
i've just started learning PHP.
i have downloaded phptriad 4.1 so that i can use php without uploading it to server.
For my feedback html file, i put:
<html>
<head>
<title>TAEKWONDO WEBSITE - Membership Form</title>
</head>
<body>
<font face="arial" size="4">
<p align="center"><big>Membership Form</big></p>
Please Fill In Your Details And Click Submit:
<br />
<fieldset><legend align="center">Personal Information</legend>
<form action="membership_form2.php" method="get">
First Name:<input type="text" name="name" size="10"/>
</fieldset>
</form>
</body>
</html>
FOR MY PHP FILE I PUT:
<html>
<head>
<title>TAEKWONDO WEBSITE - Membership Form</title>
</head>
<body>
<?php
ini_set ('display_errors',1);
register_globals
print "{$HTTP_GET_VARS}";
?>
</body>
</html>
SAVED PHP AS membership_form2.php & put all in same directory.
When i test it by filling in form & submit, Nothing appears its just a blank page?????????
any ideas?
mark
:eek: