|
|
|
จะกำหนดให้เว็บเข้าเฉพาะ ip address ที่กำหนดไว้ทำยังไงครับ |
|
|
|
|
|
|
|
ตัวอย่างจาก
https://www.thaicreate.com/php/forum/120662.html
in_array( $_SERVER['REMOTE_ADDR'], array('ip1', 'ip2','ip3') )) or die('Not allow to access');
เรากำหนดให้ เข้าได้เฉพาะ ip_address ที่กำหนด โดยเมื่อเข้า สู่หน้า www.AAA.com ต้องไปเช็ค ตาราง table_ip_address
ถ้า ip ในเครื่อง กับ ip ในตารง table_ip_address ตรงกัน ก็เข้าได้ ต้องเขียนยังไง ครับ
ตาราง ไอพี ที่เข้า หน้าเว็ปได้
table_ip_address
id , ip_address
1, 192.168.100.1
2, 192.168.100.2
3, 192.168.100.3
ตัวอย่างหน้า page
Code (PHP)
<?php
session_start();
include("con_connect.php");
?>
<?php
//session
if (isset($_SESSION["ses_id"]) && isset($_SESSION["ses_user_r"]) &&($_SESSION["ses_status_1"]!==1) ) {
} else {
echo"<center>You are not member</center><br>";
echo"<center><a href=http://AAA.com/log.php>>>กรุณาเข้าสู่ระบบ<<</a></center>";
exit();
}
?>
<html>
<head>
<title>ThaiCreate.Com</title>
</head>
<body>
<?php
$strSQL = "SELECT * FROM customer ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$Num_Rows = mysql_num_rows($objQuery);
$Per_Page = 2; // Per Page
$Page = $_GET["Page"];
if(!$_GET["Page"])
{
$Page=1;
}
$Prev_Page = $Page-1;
$Next_Page = $Page+1;
$Page_Start = (($Per_Page*$Page)-$Per_Page);
if($Num_Rows<=$Per_Page)
{
$Num_Pages =1;
}
else if(($Num_Rows % $Per_Page)==0)
{
$Num_Pages =($Num_Rows/$Per_Page) ;
}
else
{
$Num_Pages =($Num_Rows/$Per_Page)+1;
$Num_Pages = (int)$Num_Pages;
}
$strSQL .=" order by CustomerID ASC LIMIT $Page_Start , $Per_Page";
$objQuery = mysql_query($strSQL);
?>
<table width="600" border="1">
<tr>
<th width="91"> <div align="center">CustomerID </div></th>
<th width="98"> <div align="center">Name </div></th>
<th width="198"> <div align="center">Email </div></th>
<th width="97"> <div align="center">CountryCode </div></th>
<th width="59"> <div align="center">Budget </div></th>
<th width="71"> <div align="center">Used </div></th>
</tr>
<?php
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr>
<td><div align="center"><?php echo $objResult["CustomerID"];?></div></td>
<td><?php echo $objResult["Name"];?></td>
<td><?php echo $objResult["Email"];?></td>
<td><div align="center"><?php echo $objResult["CountryCode"];?></div></td>
<td align="right"><?php echo $objResult["Budget"];?></td>
<td align="right"><?php echo $objResult["Used"];?></td>
</tr>
<?php
}
?>
</table>
<br>
Total <?php echo $Num_Rows;?> Record : <?php echo $Num_Pages;?> Page :
<?php
if($Prev_Page)
{
echo " <a href='$_SERVER[SCRIPT_NAME]?Page=$Prev_Page'><< Back</a> ";
}
for($i=1; $i<=$Num_Pages; $i++){
if($i != $Page)
{
echo "[ <a href='$_SERVER[SCRIPT_NAME]?Page=$i'>$i</a> ]";
}
else
{
echo "<b> $i </b>";
}
}
if($Page!=$Num_Pages)
{
echo " <a href ='$_SERVER[SCRIPT_NAME]?Page=$Next_Page'>Next>></a> ";
}
mysql_close($objConnect);
?>
</body>
</html>
Tag : PHP, JavaScript, Action Script, Ajax, jQuery
|
ประวัติการแก้ไข 2017-09-19 13:47:13
|
|
|
|
|
Date :
2017-09-19 13:40:35 |
By :
sawmon |
View :
1494 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
table_ip_address
id , ip_address
1, 192.168.100.1
2, 192.168.100.2
3, 192.168.100.3
Code (PHP)
$query=mysql_query("select * from table_ip_address where ip_address='".$_SERVER['REMOTE_ADDR']."'");
if(mysql_num_rows($query))
{
/* เงื่อนไขหากพบ ip ใน table_ip_address*/
}
else
{
/* เงื่อนไขหากไม่พบ ip ใน table_ip_address*/
}
|
ประวัติการแก้ไข 2017-09-20 11:04:13
|
|
|
|
Date :
2017-09-20 11:03:39 |
By :
siammbk |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2017-09-20 13:39:28 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|