English 中文(简体)
我需要的是没有登记有相同用户名(封闭式)的用户的购买力平价。
原标题:I need PHP script which does not register users who has same Username [closed]
  • 时间:2012-05-07 08:44:33
  •  标签:
  • php

我需要PHP的描述,没有登记用户名称相同的用户。 我写了文字,但做了一些细微的工作,但登记了与美国国际宇宙航行科学院相同的用户。 我想,我的文字检查用户名称,如果它能够继续登记,如果它无法登记。 我很抱歉,我的英语生病:d:D PLZ写这本书。

这是我的文字和插手,告诉我们如何这样做。

页: 1

The script:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>


<body>


<?php require_once( Connections/tourname_regcs16.php ); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") 
{
  if (PHP_VERSION < 6) {
    $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
  }


  $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);


  switch ($theType) {
    case "text":
      $theValue = ($theValue != "") ? " " . $theValue . " " : "NULL";
      break;    
    case "long":
    case "int":
      $theValue = ($theValue != "") ? intval($theValue) : "NULL";
      break;
    case "double":
      $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
      break;
    case "date":
      $theValue = ($theValue != "") ? " " . $theValue . " " : "NULL";
      break;
    case "defined":
      $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
      break;
  }
  return $theValue;
}
}


$editFormAction = $_SERVER[ PHP_SELF ];
if (isset($_SERVER[ QUERY_STRING ])) {
  $editFormAction .= "?" . htmlentities($_SERVER[ QUERY_STRING ]);
}


if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
  $insertSQL = sprintf("INSERT INTO members (team_name, team_member1, team_member2, team_member3, team_member4, team_member5, email, phone_number, emoney, password,win ,defeat ,score , tour_status_complete, tour_status_progress, tour_status_willstart, team_status_payed, team_status_notpayed, team_place_1, team_place_2, team_place_3, team_place_4, team_place_5, team_place_6, team_place_7, team_place_8, team_place_9, team_place_10, team_place_11, team_place_12, team_place_13, team_place_14, team_place_15, team_place_16, team_place_17, team_place_18, team_place_19, team_place_20, team_place_final, `data`) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)",
                       GetSQLValueString($_POST[ team_name ], "text"),
                       GetSQLValueString($_POST[ team_member1 ], "text"),
                       GetSQLValueString($_POST[ team_member2 ], "text"),
                       GetSQLValueString($_POST[ team_member3 ], "text"),
                       GetSQLValueString($_POST[ team_member4 ], "text"),
                       GetSQLValueString($_POST[ team_member5 ], "text"),
                       GetSQLValueString($_POST[ email ], "text"),
                       GetSQLValueString($_POST[ phone_number ], "text"),
                       GetSQLValueString($_POST[ emoney ], "text"),
                       GetSQLValueString($_POST[ password ], "text"),
                       GetSQLValueString($_POST[ win ], "text"),
                       GetSQLValueString($_POST[ defeat ], "text"),
                       GetSQLValueString($_POST[ score ], "text"),
                       GetSQLValueString($_POST[ tour_status_complete ], "text"),
                       GetSQLValueString($_POST[ tour_status_progress ], "text"),
                       GetSQLValueString($_POST[ tour_status_willstart ], "text"),
                       GetSQLValueString($_POST[ team_status_payed ], "text"),
                       GetSQLValueString($_POST[ team_status_notpayed ], "text"),
                       GetSQLValueString($_POST[ team_place_1 ], "text"),
                       GetSQLValueString($_POST[ team_place_2 ], "text"),
                       GetSQLValueString($_POST[ team_place_3 ], "text"),
                       GetSQLValueString($_POST[ team_place_4 ], "text"),
                       GetSQLValueString($_POST[ team_place_5 ], "text"),
                       GetSQLValueString($_POST[ team_place_6 ], "text"),
                       GetSQLValueString($_POST[ team_place_7 ], "text"),
                       GetSQLValueString($_POST[ team_place_8 ], "text"),
                       GetSQLValueString($_POST[ team_place_9 ], "text"),
                       GetSQLValueString($_POST[ team_place_10 ], "text"),
                       GetSQLValueString($_POST[ team_place_11 ], "text"),
                       GetSQLValueString($_POST[ team_place_12 ], "text"),
                       GetSQLValueString($_POST[ team_place_13 ], "text"),
                       GetSQLValueString($_POST[ team_place_14 ], "text"),
                       GetSQLValueString($_POST[ team_place_15 ], "text"),
                       GetSQLValueString($_POST[ team_place_16 ], "text"),
                       GetSQLValueString($_POST[ team_place_17 ], "text"),
                       GetSQLValueString($_POST[ team_place_18 ], "text"),
                       GetSQLValueString($_POST[ team_place_19 ], "text"),
                       GetSQLValueString($_POST[ team_place_20 ], "text"),
                       GetSQLValueString($_POST[ team_place_final ], "text"),
                       GetSQLValueString($_POST[ data ], "date"));


  mysql_select_db($database_tourname_regcs16, $tourname_regcs16);
  $Result1 = mysql_query($insertSQL, $tourname_regcs16) or die(mysql_error());


  $insertGoTo = "cs16_reg_complete.php";
  if (isset($_SERVER[ QUERY_STRING ])) {
    $insertGoTo .= (strpos($insertGoTo,  ? )) ? "&" : "?";
    $insertGoTo .= $_SERVER[ QUERY_STRING ];
  }
  header(sprintf("Location: %s", $insertGoTo));
}








?>
<style type="text/css">
#form1 table tr td p {
    text-align: center;
}
</style>




<form action="<?php echo $editFormAction; ?>" method="post" name="form1" id="form1">
  <table width="493" align="center">
    <tr valign="baseline">
      <td width="120" align="right" nowrap="nowrap">გუნდის სახელი:</td>
      <td width="250"><p><input type="text" name="team_name" value="" size="32" /></p></td>
      <td>&nbsp;</td>
    </tr>
    <tr valign="baseline">
      <td nowrap="nowrap" align="right">გუნდის წევრი №1:</td>
      <td><p><input type="text" name="team_member1" value="" size="32" /></p></td>
      <td>&nbsp;</td>
    </tr>
    <tr valign="baseline">
      <td nowrap="nowrap" align="right">გუნდის წევრი №2:</td>
      <td><p><input type="text" name="team_member2" value="" size="32" /></p></td>
      <td>&nbsp;</td>
    </tr>
    <tr valign="baseline">
      <td nowrap="nowrap" align="right">გუნდის წევრი №3:</td>
      <td><p><input type="text" name="team_member3" value="" size="32" /></p></td>
      <td>&nbsp;</td>
    </tr>
    <tr valign="baseline">
      <td nowrap="nowrap" align="right">გუნდის წევრი №4:</td>
      <td><p><input type="text" name="team_member4" value="" size="32" /></p></td>
      <td>&nbsp;</td>
    </tr>
    <tr valign="baseline">
      <td nowrap="nowrap" align="right">გუნდის წევრი №5:</td>
      <td><p><input type="text" name="team_member5" value="" size="32" /></p></td>
      <td>&nbsp;</td>
    </tr>
    <tr valign="baseline">
      <td nowrap="nowrap" align="right">Emoney:</td>
      <td><p><input type="text" name="emoney" value="" size="32" /></p></td>
      <td>&nbsp;</td>
    </tr>
    <tr valign="baseline">
      <td nowrap="nowrap" align="right">ელ. ფოსტა:</td>
      <td><p><input type="text" name="email" value="" size="32" /></p></td>
      <td>&nbsp;</td>
    </tr>
    <tr valign="baseline">
      <td nowrap="nowrap" align="right">მობ. ნომერი:</td>
      <td><p><input type="text" name="phone_number" value="" size="32" /></p></td>
      <td>&nbsp;</td>
    </tr>
    <tr valign="baseline">
      <td nowrap="nowrap" align="right">პაროლი:</td>
      <td><p><input type="password" name="password" value="" size="32" /></p></td>

    </tr>
    <tr valign="baseline">
      <td nowrap="nowrap" align="right">&nbsp;</td>
      <td><p><br><input type="submit" value="რეგისტრაცია" /></p></td>
      <td>&nbsp;</td>
    </tr>
  </table>
  <input type="hidden" name="win" value="0" />
  <input type="hidden" name="defeat" value="0" />
  <input type="hidden" name="score" value="0" />
  <input type="hidden" name="tour_status_complete" value="Complete" />
  <input type="hidden" name="tour_status_progress" value="In Progress" />
  <input type="hidden" name="tour_status_willstart" value="Is Starting" />
  <input type="hidden" name="team_status_payed" value="Payed" />
  <input type="hidden" name="team_status_notpayed" value="Not Payed" />
  <input type="hidden" name="team_place_1" value="Round I" />
  <input type="hidden" name="team_place_2" value="Round II" />
  <input type="hidden" name="team_place_3" value="Round III" />
  <input type="hidden" name="team_place_4" value="Round IV" />
  <input type="hidden" name="team_place_5" value="Round V" />
  <input type="hidden" name="team_place_6" value="Round VI" />
  <input type="hidden" name="team_place_7" value="Round VII" />
  <input type="hidden" name="team_place_8" value="Round VIII" />
  <input type="hidden" name="team_place_9" value="Round IX" />
  <input type="hidden" name="team_place_10" value="Round X" />
  <input type="hidden" name="team_place_11" value="Round XI" />
  <input type="hidden" name="team_place_12" value="Round XII" />
  <input type="hidden" name="team_place_13" value="Round XIII" />
  <input type="hidden" name="team_place_14" value="Round XIV" />
  <input type="hidden" name="team_place_15" value="Round XV" />
  <input type="hidden" name="team_place_16" value="Round XVI" />
  <input type="hidden" name="team_place_17" value="Round XVII" />
  <input type="hidden" name="team_place_18" value="Round XVIII" />
  <input type="hidden" name="team_place_19" value="Round XIX" />
  <input type="hidden" name="team_place_20" value="Round XX" />
  <input type="hidden" name="team_place_final" value="Final" />
  <input type="hidden" name="data" value="<?php 
echo "Server time: ".date("M d, Y - g:i:s A"); 
?>" />
  <input type="hidden" name="MM_insert" value="form1" />
</form>
</body>
</html>
问题回答

http://www.un.org。 如果用户名称返回任何一行,则该用户名称已另行指定,则可以登记该用户。

只有在登记阶段,当用户新闻登记纽顿时,才需要查阅数据库,并试图找到用户使用已输入用户名称:

SELECT * FROM users WHERE username = ?

如果发现记录只是显示登记错误,“已经存在用户名称的用户名称”,如果没有记录,就会在数据库用户表中产生新的记录:

INSERT INTO users SET username = ?, ...

You can check it on form submit action in PHP. for example..

if(isset($_POST) && (!empty($_POST)){
  $username = $_POST[ username ];
   $username_exist_query  = "SELECT * from usertable where username =  ".$usernae."  WHERE conditions";
   $username_result = mysql_query($username_exist_query) or die(mysql_error());
   if($username_result){
      if(mysql_num_rows($username_result) == 0){
            //Do Registration operation
     }else{
         echo "Username already exist!";
     }
  }

}

hope this example code will be helpful for you.

thanks

在某些时候,你向美国宇宙航空研究开发机构发出要求(即通过j Query),使用名称显示给一些简单的PHP书,即使用名称,进行Kingk的检查,以核实用户名称是否在非行,并返还结果。





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签