php list 使用教程

 更新时间:2016年11月25日 16:03  点击:1707
php list 使用教程

list函数的作用list() 实际上是一种语言结构,不是函数... 提示和注释. 注释:该函数只用于数字索引的数组

我们来看个list实例

list($arr,$ar2) =array('aa','66');

list ($status, $host_count, $records)       = db_get_records($onadb, 'hosts', $where, "", 0);
list ($status, $dns_count, $records)        = db_get_records($onadb, 'dns', $where, "", 0);
list ($status, $interface_count, $records)  = db_get_records($onadb, 'interfaces', $where, "", 0);
list ($status, $domain_count, $records)     = db_get_records($onadb, 'domains', $where, "", 0);
list ($status, $subnet_count, $records)     = db_get_records($onadb, 'subnets', $where, "", 0);
list ($status, $pool_count, $records)       = db_get_records($onadb, 'dhcp_pools', $where, "", 0);
list ($status, $block_count, $records)      = db_get_records($onadb, 'blocks', $where, "", 0);
list ($status, $vlan_campus_count, $records) = db_get_records($onadb, 'vlan_campuses', $where, "", 0);
list ($status, $config_archive_count, $records) = db_get_records($onadb, 'configurations', $where, "", 0);

php导出mysql成cvs execel表

<?php
include_once(dirname(__FILE__).'../../Inc/Conn.php');
include_once(dirname(__FILE__).'../../photo/Inc/function.php');
$Date = date("Y-m-d");
$Filename = $Date.'_'.date("h_i_s").".csv";

$a = "帐号,邮箱,性别,宝宝出生日期,省份,真实姓名,邮编,手机,地址 rn";
header("Content-type:application/vnd.ms-excel");
header("Content-Disposition:filename=".$Filename);
$Sql = "Select * from oy_use";
$Result = mysql_query($Sql) or die(mysql_error());
  while($rs = mysql_fetch_array($Result) ){
   // if(get_days($rs['m_time'])<= $Table ){
   $a.=$rs['User_Name'].','. $rs['User_Mail'].",".($rs['User_Baby_Sex']?'男':'女').",". $rs['User_Baby_Birth'].",";
   $a.="".$rs['sheng'].",". $rs['User_rname'].",".$rs['User_Zip'].",".$rs['User_Hand'].",".$rs['User_Address']." rn ";
 //  }
  } 
  echo $a;

 
    
function get_days($base){

 $Date_1=date("Y-m-d");//格式也可以是:$Date_1="2003-6-25 23:29:14";
 
 $Date_2=substr($base,0,10);  
 
 $Date_List_a1=explode("-",$Date_1);
 
 $Date_List_a2=explode("-",$Date_2);
 //print_r($Date_List_a2);
 
 $d1=mktime(0,0,0,$Date_List_a1[1],$Date_List_a1[2],$Date_List_a1[0]);
 
 $d2=mktime(0,0,0,$Date_List_a2[1],$Date_List_a2[2],$Date_List_a2[0]);
 //echo round(($d1-$d2)/3600/24),'<br>';
 return round(($d1-$d2)/3600/24);


}
?>

php 获取用户IP与IE信息程序

function onlineip()
 {
  global $_SERVER;
  if(getenv('HTTP_CLIENT_IP'))
  {
   $onlineip = getenv('HTTP_CLIENT_IP');
  }
  elseif(getenv('HTTP_X_FORWARDED_FOR'))
  {
   list($onlineip) = explode(',', getenv('HTTP_X_FORWARDED_FOR'));
  }
  elseif(getenv('REMOTE_ADDR'))
  {
   $onlineip = getenv('REMOTE_ADDR');
  }
  else
  {
   $onlineip = $_SERVER['REMOTE_ADDR'];
  }
  return $onlineip;
 }
 function imgdecode($string)
 {
  global $_SERVER;

  $key = md5(onlineip()."\t".$_SERVER['HTTP_USER_AGENT']);
  $coded = '';
  $string = base64_decode($string);
  $keylength = strlen($key);
  for($i = 0; $i < strlen($string); $i += $keylength)
  {
   $coded .= substr($string, $i, $keylength) ^ $key;
  }
  return $coded;
 }

php 网站在线安装源码

<?php
 /*
 +-------------------------------------------
 |
 |   Technology of WeSpace Software
 |   ========================================
 |   Powered by WeSpace
 |   (c) 2006 wane.net
 |   F_Space Ver3.x
 |   ========================================
 |   Site: http://www.wesofts.com
 |
 +-------------------------------------------
 |   Autohr : wsfuyibing
 | Email : websearch@163.com
 | MSN  : websearch@163.com
 +-------------------------------------------
 */
 error_reporting(E_ERROR | E_WARNING | E_PARSE);
 set_magic_quotes_runtime(0);
 define('IN_www.111cn.net',true);
 define('IN_LICENSED',true);
 define('WANE_ROOT','../');
 $timestamp = time();
 $configfile = '../config.inc.php';
 /*
 +-------------------------------------------
 + Check PHP version
 +-------------------------------------------
 */
 if (@phpversion() < '4.1.0')
 {
     $_COOKIE = &$HTTP_COOKIE_VARS;
        $_SERVER = &$HTTP_SERVER_VARS;
        $_FILES = &$HTTP_POST_FILES;
        $_GET = &$HTTP_GET_VARS;
        $_POST = &$HTTP_POST_VARS;
 }
 /*
 +-------------------------------------------
 + Language
 +-------------------------------------------
 */
 $lang = in_array($_GET['lang'],array('gbk','big5','utf-8-gbk','utf-8-big5')) ? $_GET['lang'] : 'utf-8-gbk';
 $charset = substr($lang ,0,5);
 if (!file_exists('./'.$lang.'/language.php'))
 {
  exit('Can not load language file . ');
 }
 else
 {
  require_once './'.$lang.'/language.php';
 }
 /*
 +-------------------------------------------
 + Step
 +-------------------------------------------
 */
 $step  = file_exists('../upload/install.lock') ? '0' : ($_GET['step'] ? $_GET['step'] : '1');
 $steps = 16;
 $step = $step > $steps ? $steps : $step;
 /*
 +-------------------------------------------
 + Template
 +-------------------------------------------
 */
 $tpl_header  = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">'."\n";
 $tpl_header .= '<html xmlns="http://www.w3.org/1999/xhtml">'."\n";
 $tpl_header .= '<head>'."\n";
 $tpl_header .= '<meta http-equiv="Content-Type" content="text/html; charset='.$charset.'" />'."\n";
 $tpl_header .= '<title>'.$tplang['title'].'</title>'."\n";
 $tpl_header .= '<link href="style.css" rel="stylesheet" type="text/css" />'."\n";
 $tpl_header .= '</head>'."\n";
 $tpl_header .= '<body>'."\n";
 $tpl_header .= '<table border="0" cellpadding="0" cellspacing="0" >'."\n\t".'<tr>'."\n\t\t".'<td class="headtitle">'.$tplang['title'].'</td>'."\n\t\t".'<td class="headsteps">'.($step > 1 ? $tplang['lang_'.$lang].' <br />' : '').$tplang['step_name'].': '.$tplang['step'.$step].'('.$tplang['step_cur'].$step.$tplang['step_unit'].'/'.$tplang['step_total'].$steps.$tplang['step_unit'].')</td>'."\n\t".'</tr>'."\n".'</table>'."\n";
 $tpl_footer  = '<table border="0" cellpadding="0" cellspacing="0" >'."\n\t".'<tr>'."\n\t\t".'<td class="footer">'.$tplang['footer'].'</td>'."\n\t".'</tr>'."\n".'</table>'."\n".'</body>'."\n";
 $tpl_footer .= '</html>';
 /*
 +-------------------------------------------
 + Start Install
 +-------------------------------------------
 */
 if (file_exists('../upload/install.lock'))
 {
  echo $tpl_header;
  ?>
   <table border="0" cellspacing="0" cellpadding="0" class="stepchose">
    <tr>
     <td class="alignc">
        <?=$tplang['step0_1']?>
     </td>
    </tr>
   </table>
  <?
  echo $tpl_footer;
 }
 elseif ($step == '1')
 {
  echo $tpl_header;
  ?>
  <div class="step1">
   <ol>
    <li>
     <a href="install.php?lang=gbk&amp;step=2"><?=$tplang['lang_gbk']?></a>
    </li>
    <li>
     <a href="install.php?lang=big5&amp;step=2"><?=$tplang['lang_big5']?></a>
    </li>
    <li>
     <a href="install.php?lang=utf-8-gbk&amp;step=2"><?=$tplang['lang_utf-8-gbk']?></a>
    </li>
    <li>
     <a href="install.php?lang=utf-8-big5&amp;step=2"><?=$tplang['lang_utf-8-big5']?></a>
    </li>
   </ol>
  </div>
  <?
  echo $tpl_footer;
 }
 elseif ($step == '2')
 {
  echo $tpl_header;
  ?>
   <div class="step2">
    <?=nl2br($tplang['license'])?>
   </div>
   <table border="0" cellspacing="0" cellpadding="0" class="stepchose">
    <tr>
     <td class="alignc">
        <a href="install.php?lang=<?=$lang?>&amp;step=<?=$step-1?>"><?=$tplang['step_last']?></a>
        <a href="install.php?lang=<?=$lang?>&amp;step=<?=$step+1?>"><?=$tplang['step_next']?></a>
     </td>
    </tr>
   </table>
  <?
  echo $tpl_footer;
 }
 elseif ($step == '3')
 {
  function filewrite()
  {
   return (file_exists('../config.inc.php') && is_writable('../config.inc.php')) ? '<span class="yes">'.$GLOBALS['tplang']['yes'].'</span>' : '<span class="no">'.$GLOBALS['tplang']['no'].'</span>';
  }
  function dirwrite($folder)
  {
   $filename = '../'.$folder.'/index.htm';
   $fp = @fopen($filename,'w+');
   if (!$fp)
   {
    return '<span class="no">'.$GLOBALS['tplang']['no'].'</span>';
   }
   else
   {
    @fwrite($fp,' &nbsp; ');
    fclose($fp);
    return '<span class="yes">'.$GLOBALS['tplang']['yes'].'</span>';
   }
  }
  echo $tpl_header;
 ?>
  <div class="step3">
   <ol>
    <li>
     <?=$tplang['step3_8']?> <?=filewrite()?>
    </li>
   </ol>
  </div>
  <div class="step3">
   <ol>
    <li style="list-style:none;padding-left:0px;color:#ff0000; "><?=$tplang['step3_0']?></li>
    <li>
     <?=$tplang['step3_1']?> <?=dirwrite('upload')?>
    </li>
    <li>
     <?=$tplang['step3_2']?> <?=dirwrite('upload/cards')?>
    </li>
    <li>
     <?=$tplang['step3_3']?> <?=dirwrite('upload/gifts')?>
    </li>
    <li>
     <?=$tplang['step3_4']?> <?=dirwrite('upload/group')?>
    </li>
    <li>
     <?=$tplang['step3_5']?> <?=dirwrite('wespacedata')?>
    </li>
    <li>
     <?=$tplang['step3_6']?> <?=dirwrite('wespacedata/cache')?>
    </li>
    <li>
     <?=$tplang['step3_7']?> <?=dirwrite('wespacedata/template')?>
    </li>
   </ol>
  </div>
  <table border="0" cellspacing="0" cellpadding="0" class="stepchose">
   <tr>
    <td class="alignc">
       <a href="install.php?lang=<?=$lang?>&amp;step=<?=$step-1?>"><?=$tplang['step_last']?></a>
       <a href="install.php?lang=<?=$lang?>&amp;step=<?=$step+1?>"><?=$tplang['step_next']?></a>
    </td>
   </tr>
  </table>
 <?
  echo $tpl_footer;
 }
 elseif ($step == '4')
 {
  function filewrite()
  {
   return (file_exists('../config.inc.php') && is_writable('../config.inc.php')) ? '<span class="yes">'.$GLOBALS['tplang']['yes'].'</span>' : '<span class="no">'.$GLOBALS['tplang']['no'].'</span>';
  }
  if (!file_exists($configfile))
  {
   echo $tpl_header;
   ?>
   <table border="0" cellspacing="0" cellpadding="0" class="stepchose">
    <tr>
     <td class="alignc">
        <?=$tplang['step4_0']?>
     </td>
    </tr>
   </table>
   <?
   echo $tpl_footer;
  }
  else
  {
   require_once $configfile;
   echo $tpl_header;
   ?>
   <div class="step3">
    <ol>
     <li>
      <?=$tplang['step3_8']?> <?=filewrite()?>
     </li>
    </ol>
   </div>
   <form action="install.php?lang=<?=$lang?>&amp;step=5&amp;submit=1" method="post" name="wane_post">
   <table border="0" cellspacing="0" cellpadding="0" class="step4">
   <? foreach ($conf as $key=>$val){?>
              <tr>
                <td class="alignl"><?=$tplang['step4_'.$key]?></td>
                <td class="alignr"><input type="text" name="conf[<?=$key?>]" value="<?=$val?>" /></td>
              </tr>
   <? }?>
   <? foreach ($urlconf as $key=>$val){?>
              <tr>
                <td class="alignl"><?=$tplang['step4_'.$key]?></td>
                <td class="alignr"><input type="text" name="urlconf[<?=$key?>]" value="<?=$val?>" /></td>
              </tr>
   <? }?>
              <tr>
                <td colspan="2" class="alignc">
     <input type="hidden" name="configsubmit" value="1" />
     <input type="button" name="LastStep" value="<?=$tplang['step_last']?>" onclick="location='install.php?lang=<?=$lang?>&amp;step=<?=$step-1?>'" />
     <input type="submit" name="Submit" value="<?=$tplang['step_confsave']?>" />
     <input type="button" name="Skipit" value="<?=$tplang['step_skip']?>" onclick="location='install.php?lang=<?=$lang?>&amp;step=<?=$step+2?>'" />
    </td>
              </tr>
            </table>
   </form>
   <?
   echo $tpl_footer;
  }
 }
 elseif ($step == '5')
 {
  require_once WANE_ROOT.'install/query/5.php';
  header("location:install.php?lang={$lang}&step=6");
 }
 elseif ($step == '6')
 {
  if (!file_exists($configfile))
  {
   echo $tpl_header;
   ?>
   <table border="0" cellspacing="0" cellpadding="0" class="stepchose">
    <tr>
     <td class="alignc">
        <?=$tplang['step4_0']?>
     </td>
    </tr>
   </table>
   <?
   echo $tpl_footer;
  }
  else
  {
   require_once $configfile;
   $conn = @mysql_connect($conf['dbserver'],$conf['dbuser'],$conf['dbpass']);
   echo $tpl_header;
   if (!$conn)
   {
    ?>
    <table border="0" cellspacing="0" cellpadding="0" class="stepchose">
     <tr>
      <td class="alignc">
         <?=$tplang['step6_1_0']?>
      </td>
     </tr>
    </table>
    <?
   }
   else
   {
    ?>
    <table border="0" cellspacing="0" cellpadding="0" class="stepchose">
     <tr>
      <td class="alignc">
         <?=$tplang['step6_1_1']?>
      </td>
     </tr>
    </table>
    <?
    $sels = @mysql_select_db($conf['dbname'],$conn);
    if (!$sels)
    {
     ?>
     <table border="0" cellspacing="0" cellpadding="0" class="stepchose">
      <tr>
       <td class="alignc">
          <?=$tplang['step6_2_0']?>
       </td>
      </tr>
     </table>
     <?
    }
    else
    {
     ?>
     <table border="0" cellspacing="0" cellpadding="0" class="stepchose">
      <tr>
       <td class="alignc">
          <?=$tplang['step6_2_1']?>
       </td>
      </tr>
     </table>
     <table border="0" cellspacing="0" cellpadding="0" class="stepchose">
      <tr>
       <td class="alignc">
          <a href="install.php?lang=<?=$lang?>&amp;step=<?=$step-2?>"><?=$tplang['step_last']?></a>
          <a href="install.php?lang=<?=$lang?>&amp;step=<?=$step+1?>"><?=$tplang['step_next']?></a>
       </td>
      </tr>
     </table>
     <?
    }
   }
   echo $tpl_footer;
  }
 }
 elseif ($step == '7')
 {
  if (!file_exists($configfile))
  {
   echo $tpl_header;
   ?>
   <table border="0" cellspacing="0" cellpadding="0" class="stepchose">
    <tr>
     <td class="alignc">
        <?=$tplang['step4_0']?>
     </td>
    </tr>
   </table>
   <?
   echo $tpl_footer;
  }
  else
  {
   echo $tpl_header;
   $sqlfile = './sql/struct.php';
   if (!file_exists($sqlfile))
   {
    ?>
    <table border="0" cellspacing="0" cellpadding="0" class="stepchose">
     <tr>
      <td class="alignc">
         <?=$tplang['step7_0_0']?> (<?=$sqlfile?>)
      </td>
     </tr>
    </table>
    <?
   }
   else
   {
    $fp = @fopen($sqlfile,'r');
    if (!$fp)
    {
     ?>
     <table border="0" cellspacing="0" cellpadding="0" class="stepchose">
      <tr>
       <td class="alignc">
          <?=$tplang['step7_0_1']?> (<?=$sqlfile?>)
       </td>
      </tr>
     </table>
     <?
    }
    else
    {
     require_once WANE_ROOT.'install/query/7.php';
     ?>
     <table border="0" cellspacing="0" cellpadding="0" class="stepchose">
      <tr>
       <td class="alignc">
          <?=$tplang['step7_1']?>
       </td>
      </tr>
     </table>
     <table border="0" cellspacing="0" cellpadding="0" class="stepchose">
      <tr>
       <td class="alignc">
          <a href="install.php?lang=<?=$lang?>&amp;step=<?=$step-1?>"><?=$tplang['step_last']?></a>
          <a href="install.php?lang=<?=$lang?>&amp;step=<?=$step+1?>"><?=$tplang['step_next']?></a>
       </td>
      </tr>
     </table>
     <?
    }
   }
   echo $tpl_footer;
  }
 }
 elseif ($step >= '8' && $step <= '14')
 {
  if (!file_exists($configfile))
  {
   echo $tpl_header;
   ?>
   <table border="0" cellspacing="0" cellpadding="0" class="stepchose">
    <tr>
     <td class="alignc">
        <?=$tplang['step4_0']?>
     </td>
    </tr>
   </table>
   <?
   echo $tpl_footer;
  }
  else
  {
   echo $tpl_header;
   $sqlfile = './'.$lang.'/data'.$step.'.php';
   if (!file_exists($sqlfile))
   {
    ?>
    <table border="0" cellspacing="0" cellpadding="0" class="stepchose">
     <tr>
      <td class="alignc">
         <?=$tplang['step7_0_0']?> (<?=$sqlfile?>)
      </td>
     </tr>
    </table>
    <?
   }
   else
   {
    $fp = @fopen($sqlfile,'r');
    if (!$fp)
    {
     ?>
     <table border="0" cellspacing="0" cellpadding="0" class="stepchose">
      <tr>
       <td class="alignc">
          <?=$tplang['step7_0_1']?> (<?=$sqlfile?>)
       </td>
      </tr>
     </table>
     <?
    }
    else
    {
     require_once WANE_ROOT.'install/query/8-14.php';
     ?>
     <table border="0" cellspacing="0" cellpadding="0" class="stepchose">
      <tr>
       <td class="alignc">
          <?=$tplang['step14_1']?>
       </td>
      </tr>
     </table>
     <table border="0" cellspacing="0" cellpadding="0" class="stepchose">
      <tr>
       <td class="alignc">
          <a href="install.php?lang=<?=$lang?>&amp;step=<?=$step-1?>"><?=$tplang['step_last']?></a>
          <a href="install.php?lang=<?=$lang?>&amp;step=<?=$step+1?>"><?=$tplang['step_next']?></a>
       </td>
      </tr>
     </table>
     <?
    }
   }
   echo $tpl_footer;
  }
 }
 elseif ($step == '15')
 {
  echo $tpl_header;
  ?>
   <form action="install.php?lang=<?=$lang?>&amp;step=<?=$step+1?>&amp;submit=1" method="post" name="wane_post">
   <table border="0" cellspacing="0" cellpadding="0" class="step15">
              <tr>
                <td class="alignl"><?=$tplang['step15_u']?></td>
                <td class="alignl"><input type="text" name="username" value="<?=$val?>" /></td>
              </tr>
              <tr>
                <td class="alignl"><?=$tplang['step15_p']?></td>
                <td class="alignl"><input type="text" name="password" value="<?=$val?>" /></td>
              </tr>
              <tr>
                <td class="alignl"><?=$tplang['step15_s']?></td>
                <td class="alignl">
    <input name="sex" type="radio" value="1" checked /> <?=$tplang['step15_s1']?>
                <input name="sex" type="radio" value="2" /> <?=$tplang['step15_s2']?>
    </td>
              </tr>
              <tr>
                <td class="alignl"><?=$tplang['step15_e']?></td>
                <td class="alignl"><input type="text" name="email" value="<?=$val?>" /></td>
              </tr>
              <tr>
                <td colspan="2" class="alignc">
     <input type="hidden" name="configsubmit" value="1" />
     <input type="submit" name="Submit" value="<?=$tplang['step_confsave']?>" />
    </td>
              </tr>
            </table>
   </form>
  <?
  echo $tpl_footer;
 }
 else
 {
  $configsubmit = trim($_POST['configsubmit']);
  if ($step == '16' && $configsubmit)
  {
   $magic = @get_magic_quotes_gpc();
   function cutempty($varchar)
   {
    global $magic,$_POST;
    $varchar = $magic ? stripslashes($_POST[$varchar]) : $_POST[$varchar];
    return addslashes(htmlspecialchars(str_replace(array(" ","\n","\t","\r"),array("","","",""),$varchar)));
   }
   $username = substr(cutempty('username'),0,15);
   $password = cutempty('password');
   $email = cutempty('email');
   $sex = cutempty('sex');
   if (!$username || !$password || !$email || !$sex)
   {
    echo $tpl_header;
    ?>
    <table border="0" cellspacing="0" cellpadding="0" class="stepchose">
     <tr>
      <td class="alignc">
       <br />
       <?=$tplang['step15_1_0']?><br /><br />
       <a href="install.php?lang=<?=$lang?>&amp;step=<?=$step-1?>"><?=$tplang['step_last']?></a>
       <br /> <br />  
      </td>
     </tr>
    </table>
    <?
    echo $tpl_footer;
   }
   else
   {
    require_once WANE_ROOT.'install/query/16.php';
    echo $tpl_header;
    ?>
    <table border="0" cellspacing="0" cellpadding="0" class="stepchose">
     <tr>
      <td class="alignc">
       <br />
       <?=$tplang['step16_1']?><br /><br />
       <a href="../"><?=$tplang['step16_2']?></a>
       <br /> <br />    
      </td>
     </tr>
    </table>
    <table border="0" cellspacing="0" cellpadding="0" class="stepchose">
     <tr>
      <td class="alignc">
       <br />
       <?=$tplang['step15_u']?>:<?=$username?> <br />
       <?=$tplang['step15_p']?>:<?=$password?> <br />
       <?=$tplang['step15_s']?>:<?=$sex=='1' ? $tplang['step15_s1'] : $tplang['step15_s2']?> <br />
       <?=$tplang['step15_e']?>:<?=$email?> <br /><br />
      </td>
     </tr>
    </table>
    <?
    echo $tpl_footer;
   }
  }
  else
  {
   echo $tpl_header;
   ?>
    <table border="0" cellspacing="0" cellpadding="0" class="stepchose">
     <tr>
      <td class="alignc">
       <br />
       <?=$tplang['step16_1']?><br /><br />
       <a href="../"><?=$tplang['step16_2']?></a>
       <br /> <br />    
      </td>
     </tr>
    </table>
   <?
   echo $tpl_footer;
  }
 }
?>

php简单用户登陆程序代码

这些教程很对初学者来讲是很有用的哦,这款就下面这一点点代码了哦。

<center>
  <p>&nbsp;</p>
  <p>&nbsp;</p>
  <form name="form1" method="post" action="login_cl.php">
    <table width="500" height="241" border="0" cellpadding="0" cellspacing="0">
      <tr align="center">
        <td colspan="2" bgcolor="#999999">会员登陆界面 (login.php)|<a href="index.php">返回</a> </td>
      </tr>
      <tr bgcolor="#CCCCCC">
        <td width="137" align="center">用户:</td>
        <td width="363"><input name="yd631_name" type="text" id="yd631_name"></td>
      </tr>
      <tr bgcolor="#D9D9D9">
        <td align="center">密码:</td>
        <td><input name="yd631_pws" type="password" id="yd631_pws"></td>
      </tr>
      <tr align="center" bgcolor="#CCCCCC">
        <td colspan="2"><input type="submit" name="Submit" value="提交">   
          <input type="reset" name="submit" value="重置">
   
          </td>
      </tr>
    </table>
  </form>
  <p>&nbsp;</p>
  </center>

登陆的php处理代码

include("config.php");
?>
<?php
if(empty($_POST["yd631_name"])){
echo ("<script type='text/javascript'> alert('用户名怎么能是空的呢!');history.go(-1);</script>");
}
if(empty($_POST["yd631_pws"])){
echo ("<script type='text/javascript'> alert('密码也不能是空的!');history.go(-1);</script>");
}
$yd631_name= $_POST["yd631_name"]; //用户名已经记录了
$yd631_pws= $_POST["yd631_pws"]; //密码已经记录了
$db=mysql_connect($servername,$sqlservername,$sqlserverpws);
mysql_select_db($sqlname,$db);
$sql="select * from $sqltable where yd631_name='$yd631_name' and yd631_pws='$yd631_pws'";
$result=mysql_fetch_array(mysql_query($sql));
if(!$result){
echo ("<script type='text/javascript'> alert('用户名或密码不正确!');history.go(-1);</script>");
mysql_close();
exit;
}
if($result["yd631_pass"]=="no"){
 //验证会员是不是被审核通过了
echo ("<script type='text/javascript'> alert('您还没有被审核呢!');history.go(-1);</script>");
}
session_start();
$_SESSION["name"]="$yd631_name";
echo "<script>location.href='yd631.php';</script>";
?>

config文件。

<?php
//常规参数设置

$servername="localhost";  //主机名
$sqlservername="root"; //mysql数据库用户名
$sqlserverpws="yd631"; //mysql数据库密码

$sqlname="yd631_user"; //数据库名
$sqltable="yd631_users"; //username表名


$admin_name="yd631";  //管理员用户名
$admin_pws="yd631";   //管理员密码
?>

[!--infotagslink--]

相关文章

  • Painter绘制红衣喝酒男水粉画效果教程

    今天小编在这里就来给Painter的这一款软件的使用者们来说一说绘制红衣喝酒男水粉画效果的教程,各位想知道具体绘制步骤的使用者,那么下面就快来跟着小编一起看一看教程...2016-09-14
  • iPhone6怎么激活?两种苹果iPhone6激活教程图文详解

    iPhone6新机需要激活后才可以正常使用,那么对于小白用户来说,iPhone6如何激活使用呢?针对此问题,本文就为大家分别介绍Wifi无线网络激活以及iPhone6连接电脑激活这两种有效的方法,希望本文能够帮助到大家...2022-09-14
  • Photoshop制作雨中野外孤独行走的一头牛海报教程

    今天小编在这里就来给各位photoshop的这一款软件的使用者们来说下制作雨中野外孤独行走的一头牛海报的教程,各位想知道具体制作方法的使用者们,大家就快来看一看小编给...2016-09-14
  • Painter绘制帅气卡通魔法王子漫画教程

    今天小编在这里就来给Painter的这一款软件的使用者们来说一下绘制帅气卡通魔法王子漫画的具体教程,各位想知道绘制步骤的使用者,那么下面就快来跟着小编一起看一看教程...2016-09-14
  • Illustrator鼠绘堆雪人的孩童矢量插画教程

    今天小编在这里就来给各位Illustrator的这一款软件的使用者们来说说鼠绘堆雪人的孩童矢量插画的教程,各位想知道具体绘制方法的使用者们,那么各位就快来跟着小编来看看...2016-09-14
  • 安卓手机app添加支付宝支付开发教程

    支付宝支付在国内算是大家了,我们到处都可以使用支付宝了,下文整理介绍的是在安卓app应用中使用支付宝进行支付的开发例子。 之前讲了一篇博客关与支付宝集成获取...2016-09-20
  • 美图秀秀给照片天空加蓝天白云教程一览

    今天小编在这里就来给美图秀秀的这一款软件的使用者们来说下究竟该怎么给照片天空加蓝天白云的教程,各位想知道具体制作步骤的,那么下面就来跟着小编一起看看吧。 ...2016-09-14
  • llustrator绘制扁平化风格卡通警察护士空姐肖像教程

    今天小编在这里就来给llustrator的这一款软件的使用者们来说一说绘制扁平化风格卡通警察护士空姐肖像的教程,各位想知道具体绘制步骤的使用者们,那么下面就快来跟着小编...2016-09-14
  • Illustrator绘制一个方形的录音机图标教程

    今天小编在这里就来给Illustrator的这一款软件的使用者们来说一下绘制一个方形的录音机图标的教程,各位想知道具体绘制方法的使用者们,那么下面就来看一下小编给大家分...2016-09-14
  • photoshop简单制作一个搞笑的换脸表情包教程

    今天小编在这里就来给photoshop的这一款软件的使用者们来说一说简单制作一个搞笑的换脸表情包的教程,各位想知道具体制作方法的使用者们,那么大家就快来看一看教程吧。...2016-09-14
  • photoshop给手绘画调色变换场景后期教程

    今天小编在这里就来给各位photoshop的这一款软件的使用者们来说说给手绘画调色变换场景的后期教程,各位想知道具体后期处理步骤的使用者们,那么大家就快来跟着小编来看...2016-10-02
  • 图解PHP使用Zend Guard 6.0加密方法教程

    有时为了网站安全和版权问题,会对自己写的php源码进行加密,在php加密技术上最常用的是zend公司的zend guard 加密软件,现在我们来图文讲解一下。 下面就简单说说如何...2016-11-25
  • 美图秀秀让你胸丰满起来处理教程

    今天小编在这里就来给美图秀秀的这一款软件的使用者们来说一下让你胸丰满起来的处理教程,各位想知道具体处理步骤的,那么下面就快来跟着小编一起看一下教程吧。 给...2016-09-14
  • Painter绘制雷神传插画教程

    今天小编在这里就来给Painter的这一款软件的使用者们来说一下绘制雷神传插画的教程,各位想知道具体绘制步骤的使用者,那么下面就快来跟着小编一起看看绘制方法吧。 ...2016-09-14
  • ps怎么使用HSL面板

    ps软件是现在很多人都会使用到的,HSL面板在ps软件中又有着非常独特的作用。这次文章就给大家介绍下ps怎么使用HSL面板,还不知道使用方法的下面一起来看看。 &#8195;...2017-07-06
  • Plesk控制面板新手使用手册总结

    许多的朋友对于Plesk控制面板应用不是非常的了解特别是英文版的Plesk控制面板,在这里小编整理了一些关于Plesk控制面板常用的使用方案整理,具体如下。 本文基于Linu...2016-10-10
  • 使用insertAfter()方法在现有元素后添加一个新元素

    复制代码 代码如下: //在现有元素后添加一个新元素 function insertAfter(newElement, targetElement){ var parent = targetElement.parentNode; if (parent.lastChild == targetElement){ parent.appendChild(newEl...2014-05-31
  • 美图秀秀制作隔离区聊天背景教程

    今天小编在这里就来给美图秀秀的这一款软件的使用者们来说下制作隔离区聊天背景的教程,各位想知道具体方法的,那么下面就快来跟着小编一起看一看吧。 给各位美图秀...2016-09-14
  • jQuery 1.9使用$.support替代$.browser的使用方法

    jQuery 从 1.9 版开始,移除了 $.browser 和 $.browser.version , 取而代之的是 $.support 。 在更新的 2.0 版本中,将不再支持 IE 6/7/8。 以后,如果用户需要支持 IE 6/7/8,只能使用 jQuery 1.9。 如果要全面支持 IE,并混合...2014-05-31
  • 使用percona-toolkit操作MySQL的实用命令小结

    1.pt-archiver 功能介绍: 将mysql数据库中表的记录归档到另外一个表或者文件 用法介绍: pt-archiver [OPTION...] --source DSN --where WHERE 这个工具只是归档旧的数据,不会对线上数据的OLTP查询造成太大影响,你可以将...2015-11-24