
 Rank: Guest Groups: Guest
Joined: 9/17/2007 Posts: 11,670 Points: -1,200
|
Date parsed: 22/04/2008 14:27:41 Date: Tue, 22 Apr 2008 13:27:41 +0100
(www.phpform.co.uk being just registered and no point looking at it unless you have never seen the 123reg holding page before)
Been thinking about doing a small utility website that would create/generate a form entry and form submit page .
phpform.php phpform_submit.php phpform_config.php etc etc
Is the type of files the phpform website would generate and users would just need to upload them to their webspace .
The phpform utility website being point and click stuff with the user selecting how many single line(s) or textarea(s) they want on the form along with hard coding the email address .
The form will also have a basic image code .
Obviously most users on here dont have any problems making a form but the fact is lots of newish 'authoring' users do .
Will probably use the following method so users dont need to mess around with header and footer files .
<html> <head> <title>demo</title> </head>
<body>
<div align="center"><?php include('phpform.php'); ?></div>
</body> </html>
phpform being the actual form with image code and submit button .
<html> <head> <title>demo</title> </head>
<body>
<div align="center"><?php include('phpform_submit.php'); ?></div>
</body> </html>
phpform being the submittal / check / mail() stuff .
Good or bad way to do it ? .
|