Hosting Content Managment Systems and Forums
Posted: Sun Dec 21, 2003 6:08 pm
Hello,
I am looking for someone that could help me with a script similar to http://s3.invisionfree.com/register.php . What seems to happen in this script is when you fill in the fields they go to a new database. If anyone could come up with a script that for a free web hosting site (with no ads) that would automaticly generate a phpnuke, postnuke, invision power board, or phpbb installation it would be very helpful. If anyone can you may have 3 domains and a gold hosting plan from unitedhosting.co.uk.
I am looking for someone that could help me with a script similar to http://s3.invisionfree.com/register.php . What seems to happen in this script is when you fill in the fields they go to a new database.
Code: Select all
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>InvisionFree</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="http://invisionfree.com/files/css.css" rel="stylesheet" type="text/css">
</head>
<body>
<table width="748" border="0" align="center" cellpadding="0" cellspacing="0" class="mainframe">
<tr>
<td height="75" colspan="2" valign="middle" class="topbox"> <img src="http://invisionfree.com/files/images/logo.gif" width="169" height="37" alt="InvisionFree"></td>
</tr>
<tr>
<td colspan="2" class="navbar"><div align="center"><a href="http://invisionfree.com/index.php">Home</a>
| <a href="http://s3.invisionfree.com/register.php">Register</a> | <a href="http://invisionfree.com/index.php?p=features">Features</a>
| <a href="http://invisionfree.com/index.php?p=faq">FAQ</a> | <a href="http://invisionfree.com/forums/support/index.php">Support</a> | <a href="http://invisionfree.com/directory.php">Board Directory</a>
</td>
</tr>
<tr>
<td width="150" valign="top" class="leftbar">Over <b>100,000</b> boards registered.<br/>
Over <b>1,000,000</b> members registered.
<hr width="98%" size="1"/>
- <a href="http://invisionfree.com/index.php?p=credits">Resources</a><br/>
- <a href="http://invisionfree.com/index.php?p=privacy">Privacy Policy</a><br/>
- <a href="http://invisionfree.com/index.php?p=tos">Terms of Service</a><br/>
<!-- - <a href="http://invisionfree.com/abuse.php">Report Abuse</a>
<hr width="98%" size="1"/>--></td>
<td valign="top" class="contentbox"><script language='javascript'>
<!--
function checkit() {
if (document.create.agree.checked == true) {
return true;
} else {
alert ("You must agree to the Terms of Service to register");
return false; }
}
//-->
</script>
<form action="http://s3.invisionfree.com/register.php?p=2" method="post" name='create' onSubmit='return checkit()'>
<table cellpadding='3' cellspacing='1' border='0' width='90%' align='center'>
<tr align='left'>
<td width='60%'><b>Board Name:</b><br>Must be between 3 and 20 characters.</td>
<td><input type='text' size='32' maxlength='20' value='' name='board'></td></tr>
<tr align='left'>
<td width='60%'><b>Username:</b><br>Must be between 3 and 32 characters.</td>
<td><input type='text' size='32' maxlength='32' value='' name='adminname'></td></tr>
<tr align='left'>
<td width='60%'><b>Category:</b><br>Choose a category for your board.</td>
<td><select name='category'>
<option value='-1' selected="selected">Choose a category</option>
<option value='8'>Anime</option>
<option value='1'>Art & Literature</option>
<option value='2'>Automobiles</option>
<option value='5'>Computers & Internet</option>
<option value='7'>Education</option>
<option value='18'>Family & Parents</option>
<option value='22'>Forum Services</option>
<option value='4'>Gaming Clans</option>
<option value='24'>Gaming: Console</option>
<option value='10'>Gaming</option>
<option value='26'>Gaming: RPG</option>
<option value='25'>Gaming: Specific Game</option>
<option value='20'>Graphics & Design</option>
<option value='12'>Health & Medical</option>
<option value='13'>Hobbies</option>
<option value='19'>Macintosh</option>
<option value='3'>Music</option>
<option value='6'>News & Politics</option>
<option value='14'>Online Communities</option>
<option value='23'>Outdoors & Nature</option>
<option value='21'>Programming</option>
<option value='15'>Religious</option>
<option value='16'>Sports</option>
<option value='17'>Teens</option>
<option value='11'>TV & Movies</option>
<option value='9'>Wrestling</option>
</select></td></tr>
<tr align='left'>
<td width='60%'><b>Password:</b><br>Must be between 3 and 32 characters.</td>
<td><input type='password' size='32' maxlength='32' value='' name='psw'></td></tr>
<tr align='left'>
<td width='60%'><b>Password verify:</b><br>Please re-enter your password.</td>
<td><input type='password' size='32' maxlength='32' value='' name='psw2'></td></tr>
<tr align='left'>
<td width='60%'><b>Email Address:</b><br>Must be a valid email address.</td>
<td><input type='text' size='32' maxlength='60' value='' name='email'></td></tr>
<tr align='left'>
<td width='60%'><b>Email Address verfiy:</b><br>Please re-enter your email address.</td>
<td><input type='text' size='32' maxlength='60' value='' name='email2'></td></tr>
<tr align='center'>
<td colspan='2'>
<br><br>
<b><a href="http://invisionfree.com/index.php?p=tos">The Terms of Service</a></b>
<br><input type='checkbox' name='agree' value='1'> I have read and agree to the Terms of Service.
</td></tr>
<tr align='center'>
<td colspan='2'>
<input type="submit" value="Register">
</td></tr>
</table>
</form> </td>
</tr>
<tr>
<td colspan="2" class="copyright"><div align="center">© 2003 InvisionFree</div></td>
</tr>
</table>
</body>
</html>