|
|
|
ช่วยดูโค้ดสมัครสมาชิกแล้วเอาข้อมูลมาแสดงให้หน่อยครับ มันไม่แสดงภาษาไทยครับ |
|
|
|
|
|
|
|
อันนี้หน้าแบบฟอร์มครับ
regis.php
<?php
@session_start();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Type" content="text/html; charset=tis-620">
<meta http-equiv="Content-Type" content="text/html; charset=windows-874"/>
<body>
<div id="main">
<div id="register" class="post">
<h2 class="title">สมัครสมาชิก</h2>
<form id="form1" method="post" action="check_regis.php">
<tr>
<td><table border="0" width="100%" cellspacing="0" cellpadding="2">
<tr>
<td><b>ข้อมูลส่วนตัว</b></td>
<td class="inputRequirement" align="right"><font color="#FF0000">* ช่องที่ต้องกรอกข้อมูล </font></td>
</tr>
</table></td>
</tr>
<tr>
<td><table border="1" width="100%" cellspacing="1" cellpadding="2" class="infoBox">
<tr class="infoBoxContents">
<td><table border="0" cellspacing="2" cellpadding="2">
<tr>
<td class="main">ชื่อ-นามสกุล :</td>
<td class="main"><input type="text" name="name"> <span class="inputRequirement">*</span></td>
</tr>
<tr>
<td class="main">อีเมล์ :</td>
<td class="main"><input type="text" name="e-mail"> <span class="inputRequirement">*</span></td>
</tr>
<tr>
<td class="main">เบอร์โทรศัพท์บ้าน/มือถือ :</td>
<td class="main"><input type="text" name="tel" maxlength="10"> <span class="inputRequirement">*</span></td>
</tr>
<tr>
<td class="main">ที่อยู่ :</td>
<td class="main"><textarea name="address" cols="25" rows="4"></textarea> <span class="inputRequirement">*</span></td>
</tr>
<tr>
<td class="main">รหัสไปรษณีย์ :</td>
<td class="main"><input type="text" name="zip" maxlength="5"> <span class="inputRequirement">*</span></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
<tr>
<td><b>ข้อมูลการล็อกอินเข้าระบบ</b></td>
</tr>
<tr>
<td><table border="1" width="100%" cellspacing="1" cellpadding="2" class="infoBox">
<tr class="infoBoxContents">
<td><table border="0" cellspacing="2" cellpadding="2">
<tr>
<td class="main">ชื่อเข้าระบบ :</td>
<td class="main"><input type="text" name="login_name" maxlength="10"> <span class="inputRequirement">*</span></td>
</tr>
<tr>
<td class="main">รหัสผ่าน :</td>
<td class="main"><input type="password" name="login_pw" maxlength="6"> <span class="inputRequirement">* กรุณากรอก password 4 - 8 ตัว</span></td>
</tr>
<tr>
<td class="main">ยืนยันรหัสผ่าน :</td>
<td class="main"><input type="password" name="login_pw_conf" maxlength="6"> <span class="inputRequirement">* กรุณากรอก password 4 - 8 ตัว</span></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
<tr>
<td><table border="0" width="100%" cellspacing="1" cellpadding="2">
<tr>
<td><table border="0" width="100%" cellspacing="0" cellpadding="2">
<tr>
<td align="left" ><input id="inputsubmit1" type="submit" name="inputsubmit1" value=" ตกลง " />
<input id="inputcancel" type="reset" name="inputcancel" value=" ยกเลิก " /></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
</table></form>
</form>
</div>
</div>
</body>
</html>
อันนี้หน้าเช็คครับ
check_regis.php
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Type" content="text/html; charset=tis-620">
<meta http-equiv="Content-Type" content="text/html; charset=windows-874"/>
<div id="main">
<div id="regis_success" class="post">
<h2 class="title">ผลการสมัครสมาชิก !!</h2>
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td><table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td valign="top"><table border="0" width="100%" cellspacing="0" cellpadding="2">
<tr>
<?php
$error = 0;
$name = trim($_POST["name"]);
$email= trim($_POST["e-mail"]);
$tel = trim($_POST["tel"]);
$address = trim($_POST["address"]);
$zip = trim($_POST["zip"]);
$login_name = trim($_POST["login_name"]);
$login_pw = trim($_POST["login_pw"]);
$login_pw_conf = trim($_POST["login_pw_conf"]);
if(!$name)
{
echo "ยังไม่ได้กรอก ชื่อ-นามสกุล กรุณากรอกใหม่ !!<br/>";
$error = 1;
}
if(!$email)
{
echo "ยังไม่ได้กรอก Email กรุณากรอกใหม่ !!<br/>";
$error = 1;
}
if(!$tel)
{
echo "ยังไม่ได้กรอกเบอร์โทรศัพท์ กรุณากรอกใหม่ !!<br/>";
$error = 1;
}
if(strlen($tel)<1 || strlen($tel)>10)
{
echo "กรอกเบอร์โทรศัพท์ไม่ครบ 10 ตัว!!<br/>";
$error = 1;
}
if(!$address)
{
echo "ยังไม่ได้กรอก ที่อยู่ กรุณากรอกใหม่ !!<br/>";
$error = 1;
}
if(!$zip)
{
echo "ยังไม่ได้กรอก รหัสไปรษณีย์ กรุณากรอกใหม่ !!<br/>";
$error = 1;
}
if(strlen($zip)<1 || strlen($zip)>5)
{
echo "กรอกรหัสไปรษณีย์ไม่ครบ 5 ตัว!!<br/>";
$error = 1;
}
if(!$login_name)
{
echo "ยังไม่ได้กรอก ชื่อเข้าระบบ กรุณากรอกใหม่ !!<br/>";
$error = 1;
}
if($login_pw != $login_pw_conf)
{
echo "รหัสผ่านไม่ตรงกัน กรุณากลับไปตรวจสอบอีกครั้ง !!<br/>";
$error = 1;
}
if(strlen($login_pw)<4 || strlen($login_pw)>8)
{
echo "ความยาวของรหัสผ่านไม่อยู่ในช่วง 4 ถึง 8 กรุณากลับไปตรวจสอบอีกครั้ง !!<br/>";
$error = 1;
}
if(!$name || !$email || !$tel || !$address || !$zip || !$login_name || !$login_pw || !$login_pw_conf)
{
echo "<center><a href=regis.php><font size=3> กรอกข้อมูลใหม่ </font></a></center>";
print "<Meta http-equiv='refresh' content='2;URL=regis.php'>";
exit;
}
@$db = new mysqli('localhost','root','12345','cms');
mysql_query('SET CHARACTER SET tis620');
if(mysqli_connect_errno())
{
echo "ไม่สามรถติดต่อฐานข้อมูลได้ กรุณาลองใหม่อีกครั้ง.";
exit;
}
$SQL = "INSERT INTO userinfo VALUES (NULL, '$login_name', '$login_pw','$name','$email','$address','$tel','$zip','1')";
$result = $db -> query($SQL);
if($result)
{
echo "ยินดีด้วยครับ! สมัครสมาชิกเรียบร้อยแล้ว ";
print "<Meta http-equiv='refresh' content='2;URL=login.php'>";
}
else
{
echo $db -> error;
}
$db -> close();
?>
</tr>
</table></td>
</tr>
</table></td>
</tr>
</div>
อันนี้โค้ด นำข้อมูลมาแสดงครับ
Code (PHP)
<?php
@session_start();
include("connect.php");
?>
<? $css_path = "script/style_manager.css"; ?>
<link href="<?echo $css_path?>" rel="stylesheet" type="text/css">
<link href="script/style_content.css" rel="stylesheet" type="text/css">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Type" content="text/html; charset=tis-620">
<meta http-equiv="Content-Type" content="text/html; charset=windows-874"/>
<title>Main Manager : [ การจัดการผู้ใช้ ]</title>
</script>
<script src="script/selectall.js"></script>
<script type="text/javascript" src="main_js/stmenu.js"></script>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<style type="text/css">
body,td,th {
font-family: arial;
font-size: 13px;
}
</style>
<?php
$number = 0;
$sql = "SELECT * FROM userinfo ";
$result=mysql_query($sql);
$total=mysql_num_rows($result);
?>
<center>
<form id="form" name="form" method="post" action="del_member.php">
<input TYPE="hidden" VALUE="member" NAME="PageType">
<table width="950" border="0" cellpadding="0" cellspacing="0">
<tr>
<td background="images/header.gif" height="89" valign="bottom">
<script type="text/javascript" src="main_js/head_menu.js"></script>
</td>
</tr>
<tr>
<td background="images/background_head1.jpg" height="13"></td>
</tr>
<tr>
<td background="images/background_head2.jpg" height="40" align="right">
<img src="images/blank.png" align="left" width="10"><img src="images/user_manager.jpg" height="58" align="left">
<input type="image" name="button3" id="button3" src="images/delete.jpg" />
<a href="../help/contact_manager.pdf"><img src="images/help.jpg" alt="Help" border="0" id="b_help" onMouseOver="border=1" onMouseOut="border=0"></a>
</td>
</tr>
<tr>
<td background="images/background_head3.jpg" height="22">
<div style="position: relative; left: 700px; bottom: 98px;">
<img src="images/preview.png" border="0" height="21"><a href="index.php" target="_blank"><font id="main_status"> แสดงตัวอย่าง</font></a>
<img src="images/user_online.png" border="0" height="21"><font id="main_status"> 2</font>
<img src="images/logout.png" border="0" height="21"><a href="../login/login.php"><font id="main_status"> ออกจากระบบ</font></a>
</div>
</td>
</tr>
<tr>
<td background="images/background_body.jpg" height="10">
</td>
</tr>
<tr>
<!-- table detail -->
<td background="images/background_body.jpg" align="center">
<table width="95%" border="1" cellpadding="2" cellspacing="0">
<tr>
<th bgcolor="#EEEEEE" scope="col" width="5%"><font id="mg_table_head">#</font></th>
<th bgcolor="#EEEEEE" scope="col" width="5%"><label><input type="checkbox" name="B_choose2" id="B_choose2" onClick="handler_member();"></label></th>
<th bgcolor="#EEEEEE" scope="col"><font id="mg_table_head">Username</font></th>
<th bgcolor="#EEEEEE" scope="col"><font id="mg_table_head">Name</font></th>
<th bgcolor="#EEEEEE" scope="col"><font id="mg_table_head">Email</font></th>
<th bgcolor="#EEEEEE" scope="col"><font id="mg_table_head">Address</font></th>
<th bgcolor="#EEEEEE" scope="col"><font id="mg_table_head">Zip Code</font></th>
<th bgcolor="#EEEEEE" scope="col"><font id="mg_table_head">Tel</font></th>
<th bgcolor="#EEEEEE" scope="col"><font id="mg_table_head">Status</font></th>
</tr>
<?
//$number = $before_p-1;
while ($dbarr=mysql_fetch_array($result,MYSQL_ASSOC)){
?>
<tr id="row<?=$dbarr["user_id"] ?>">
<? $number++; ?>
<td><div align="center"><font id="mg_table_body"><?=$number?></font></div></td>
<td align="center">
<label>
<div >
<input type="checkbox" name="user_id[]" id="user_id[]" value="<?=$dbarr["user_id"] ?>" />
</div>
</label>
</td>
<td align="left"><font id="mg_table_body"><? echo $dbarr["login_name"]; ?></a></font></td>
<td align="left"><font id="mg_table_body"><? echo $dbarr["name"]; ?></font></td>
<td align="center"><font id="mg_table_body"><? echo $dbarr["e-mail"]; ?></font></td>
<td align="center"><font id="mg_table_body"><? echo $dbarr["address"]; ?></font></td>
<td align="center"><font id="mg_table_body"><? echo $dbarr["zip"]; ?></font></td>
<td align="center"><font id="mg_table_body"><? echo $dbarr["tel"]; ?></font></td>
<td align="center"><font id="mg_table_body"><? echo $pub; ?></font></td>
</tr>
<? }?>
</table>
</center>
</form>
</td>
<!-- end of table detail -->
</tr>
<tr>
<td height="68" background="images/background_foot.jpg"></td>
</tr>
</table>
</body>
</html>
Tag : PHP
|
|
|
|
|
|
Date :
2011-01-18 12:37:07 |
By :
l3eel2 |
View :
998 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Type" content="text/html; charset=tis-620">
<meta http-equiv="Content-Type" content="text/html; charset=windows-874"/>
เลือกเอาสักอย่างครับ
|
|
|
|
|
Date :
2011-01-18 13:37:05 |
By :
PlaKriM |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
สงสัยกะว่าตัดสินใจไม่ถูก เลยเอาทั้งหมดเลย
|
|
|
|
|
Date :
2011-01-18 14:27:26 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|