Website~ Register Problom~

02/14/2012 15:05 drake17#1
Help Me Plss~ Can I Delete Visual CAPTCHA?~ :handsdown:
02/14/2012 15:30 SZero[PM]#2
You didn't specify your problem/request?
can you?
so we can help you better!
02/16/2012 10:53 Elite4Demons#3
yes you can// re-edit pages/register.php


PHP Code:
<? 
require("config.php");
?>
<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" />
<script type="text/javascript" src="./inc/md5.js"></script>
<style type="text/css">
</style></head>
<DIV align="center"><b class="h2">
</b>
<br />
<table width="299" height="22" border="0" align="center">
  <tr>

  </tr>
</table>
<br />
<form method='post' action='register.php?act=register'>
      <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="323" height="229">
              <TBODY>
              <TR>
                <TD align="left" height="32">UserID:</TD>
                <TD class=it3 height="32">
                <INPUT class=it style="FONT-SIZE: 9pt" name="id" id="id">                </TR>
              <TR>
                <TD align="left" height="37">Password:</TD>
                <TD class=it3 height="37">
                <INPUT class=it id="ipassword" style="FONT-SIZE: 9pt" type=password maxLength=12 name=pass></TD>
                </TR>
              <TR>
                <TD align="left" height="32">Retype Password:</TD>
                <TD class=it3 height="32">
                <input class=it1 id="ipassword" style="FONT-SIZE: 9pt" type=password maxlength=12 name=retpass></TD>
                </TR>

                <TD></TD>
                <TD style="FONT-SIZE: 14px; VERTICAL-ALIGN: middle">
                <span style="font-size: 9pt"><input type="hidden" name="hash"><input class=Butt type=submit onclick="hash.value = login(pass.value)" value='Register' name=B1></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>

Any problem let me know ;)