I want to..

Andy_16

New Member
create a form in either frontpage or dreamweaver and then when you click the submit button it submits the data entered in the form to a file or as a html page.

I am currently running the latest apache HTTP server software on my Windows XP Home system. Can somebody give me some help on how to accomplish this...


Thanks


Andy
 

websonalized

New Member
Maybe this helps... I am not an expert... but maybe this will give you an idea

<html>
<body>
<FORM ACTION="process_form.php" METHOD=POST>
<P>Please Fill the Registration Form</p><br>
Enter Your Name<input type="text" name="username"><br>
Enter Your Credit Card Number<input type="text" name="credit Number"><br>
<input type="hidden" id="timestamp" name="the_date" value="<?php echo date('Y-m-d'); ?>" />
<input type="submit" value="send">
</FORM>
</body>
</html>
 
Top