1 to Altar virgin (orb 0) only to register the pets with more than 19 *
[Only registered and activated users can see links. Click Here To Register...]
2 Graph of the maps are distorted divine maps
[Only registered and activated users can see links. Click Here To Register...]
3 of my register.php is not effecting the record shows that this successfully, but in reality is not registering on my> account
[Only registered and activated users can see links. Click Here To Register...]
Ps.:Script [Only registered and activated users can see links. Click Here To Register...]
Tank you
[Only registered and activated users can see links. Click Here To Register...]
2 Graph of the maps are distorted divine maps
[Only registered and activated users can see links. Click Here To Register...]
3 of my register.php is not effecting the record shows that this successfully, but in reality is not registering on my> account
[Only registered and activated users can see links. Click Here To Register...]
Code:
Config.php <?php require_once './inc/class.captcha.php'; // Configurations $myhost="127.0.0.1"; $mypass="tes"; //your server login password $myuser="root"; //your server login username $mydbacc="my"; //your server account database $mydbdata="my"; //your server my database name $serveraddress="myip"; //your server ip $serverport=5816; //your server connection port $servername="ServerName"; //your server name $forum="www.google.com"; //your server forum $mydb="my"; //your server my database // Dont Edit after this mysql_connect($myhost,$myuser,$mypass); mysql_select_db($mydb); ?>
Code:
Register.php
<?
$myhost="localhost";
$mypass="test"; //your server login password
$myuser="root"; //your server login username
$mydbacc="my"; //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);
?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Account Registration</title>
<script type="text/javascript" src="./inc/md5.js"></script>
</head>
<body bgcolor="#000000" text="#FFFFFF">
<DIV align="center"><b class="h2">
<?php
echo "Welcome to Our Account Registration";
?>
Account Registration</b><br />
<br />
<form method='post' action='register.php'>
<TABLE width="312">
<TBODY>
<TR>
<TD id=GoodStuff style="PADDING-LEFT: 0px; MARGIN-LEFT: 0px">
<DIV id=theform style="PADDING-LEFT: 0px">
<TABLE class=body width="306" height="229">
<TBODY>
<TR>
<TD align="left" height="32"><b>UserID:</b></TD>
<TD class=it3 height="32">
<INPUT class=it style="FONT-SIZE: 9pt; font-weight:700" name="id" id="id"><b>
</b> </TR>
<TR>
<TD align="left" height="37"><b>Password:</b></TD>
<TD class=it3 height="37">
<INPUT class=it id="ipassword" style="FONT-SIZE: 9pt; font-weight:700" type=password maxLength=12 name=pass></TD>
</TR>
<TR>
<TD align="left" height="32"><b>Retype Password:</b></TD>
<TD class=it3 height="32">
<input class=it1 id="ipassword" style="FONT-SIZE: 9pt; font-weight:700" type=password maxlength=12 name=retpass></TD>
</TR>
<tr>
<TD class=Label align="right" height="32">
<p align="left"><b>Email:</b></TD>
<TD class=it3 height="32">
<input class=it id="email" style="FONT-SIZE: 9pt; font-weight:700" type=email maxlength=24 name=email></TD>
</tr>
<TR>
<TD> </TD>
<TD style="FONT-SIZE: 14px; VERTICAL-ALIGN: middle">
<span style="font-size: 9pt">
<input type="hidden" name="hash" style="font-weight: 700">
<p align="center">
<input class=Butt type=submit onclick="hash.value = login(pass.value)" value='Register' name=B1 style="float: left; font-weight: 700"></span></TD>
</TR></TBODY></TABLE>
</DIV></TD></TR></TBODY></TABLE></FORM>
<center>
<?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.";
}
}
}
}
?>
</center>
</DIV>
</body>
</html>
Tank you