|
|
|
การตัดเลขบัตรประจำตัวประชาชนจาก 13 หลัก เอาเฉพาะ 5 หลักสุดท้าย ?????? |
|
|
|
|
|
|
|
Code (PHP)
echo substr('1941000134318' , -5);
|
|
|
|
|
Date :
2012-08-12 22:59:11 |
By :
adaaugusta |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เพิ่มเติม
Code (PHP)
<?php
echo substr('abcdef', 1); // bcdef
echo substr('abcdef', 1, 3); // bcd
echo substr('abcdef', 0, 4); // abcd
echo substr('abcdef', 0, 8); // abcdef
echo substr('abcdef', -1, 1); // f
// Accessing single characters in a string
// can also be achieved using "square brackets"
$string = 'abcdef';
echo $string[0]; // a
echo $string[3]; // d
echo $string[strlen($string)-1]; // f
?>
|
|
|
|
|
Date :
2012-08-13 07:42:31 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณค่ะ ได้แล้ว
<?php
$user = $_POST['idcard'];
$_SESSION["user1"] = $_POST['idcard'];
$pass = $_POST['password'];
$b=substr($user,8,8);
if(($user!="") && ($pass!="") )
{
if ($pass != $b)
{
echo"<script language='JavaScript'>";
echo"alert('รหัสผ่านไม่ถูกต้องกรุณาตรวจสอบ !!!');";
echo"</script >";
echo "<meta http-equiv='refresh' content='0;URL=index.php'>";
}
else {
echo "<meta http-equiv='refresh' content='0;URL=main_surveyonline.php'>";
}
}
else{
echo "<meta http-equiv='refresh' content='0;URL=index.php'>";
}
?>
|
|
|
|
|
Date :
2012-08-14 11:12:50 |
By :
eii-mian |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|