Editing Host:
Things need:

(Optional)Color Chart :

Step 1: Download the Register Page without CAPTCHA.
Step 2: Open Register.php with a Text Editor.
Step 3: See where it says
PHP Code:
<?
$myhost="localhost";
$mypass="test"; //your server login password
$myuser="root"; //your server login username
$mydbacc="account"; //your server account database
$mydbdata="my"; //your server my database name
$serverport=3306; //your server connection port
$mydb="my"; //your server my database
// Dont Edit after this
mysql_connect($myhost,$myuser,$mypass);
mysql_select_db($mydb);
?>
Step 4: Copy and Paste in your Directory. And done lol
Editing the Body:
Step 1: Edit the Title, Its in <title>Account Registration</title>. Type anything inside the <title> Tags.
Step 2: Next thing you want to edit is the Title on the actual Page.
Code:
<?php echo "[COLOR="Red"]Welcome to Our Account Registration[/COLOR]"; ?> [COLOR="Red"]Account Registration[/COLOR]
Code:
<TR>
<TD align="left" height="32"><b>[COLOR="Red"]UserID:[/COLOR]</b></TD>
<TD class=it3 height="32">
<INPUT class=it style="FONT-SIZE: 9pt; font-weight:700" name="id" id="id"><b>
</b> </TR>
Do not edit After this:
PHP Code:
<?php
if($_POST['B1'])
{
mysql_select_db($mydbacc);
$userid = trim($_POST['id']);
$password=trim($_POST['pass']);
$passretype=trim($_POST['retpass']);
$hash=$_POST['hash'];
if($password != $passretype) {
echo "Password not equal to Retyped Password.";
}else{
if(!ereg("^[0-9a-zA-Z]{4,12}$",$password))
{
echo "Only letters or numbers, length of 4 to 12 characters";
}
else
{
$res = mysql_query("select * from account where name = '".$userid."' order by id desc");
if(mysql_num_rows($res) == 0)
{
mysql_query("insert into account (name,Password,Reg_date) values ('".$userid."','".$hash."','".date("y-m-d H:i:s", time())."')");
echo "Account registered successfully.";
}
else
{
echo "Account Already exists in database.";
}
}
}
}
?>
Extra Things:
Icon
*
Code:
<link REL="SHORTCUT ICON" HREF="[COLOR="Red"]LinkHere[/COLOR]">
Background
*
Code:
Delete --> <body bgcolor="#000000" text="#FFFFFF">
Code:
add -->> <body background=[COLOR="Red"]THEURL[/COLOR] text="[COLOR="Red"]red[/COLOR]">
Congratz! You've made a Register Page with no Recaptcha code AND You've Learned HTML
Credits:
Grandalio -> Released the Script
Spongebox -> Made the Guide..
Any questions? Reply below.. Again, I didn't Leech, Lol






