|
|
|
ขอรบกวน ส่งค่า ตัวแปร localhost/index.php? $ตัวแปร |
|
|
|
|
|
|
|
iptest.php
Code (PHP)
<?php
function getLocalIP(){
exec("ipconfig /all", $output);
foreach($output as $line){
if (preg_match("/(.*)IPv4 Address(.*)/", $line)){
$ip = $line;
$ip = str_replace("IPv4 Address. . . . . . . . . . . :","",$ip);
$ip = str_replace("(Preferred)","",$ip);
}
}
return $ip;
}
echo $ip = getLocalIP(); //This will return: 192.168.x.x (Your Local IP)
?>
คือโค๊ดนี้เป็นการหาค่า ip ในวงแลนของเราครับ แสดงผลก็จะได้ประมาณว่า 192.168.1.4 ประมาณนี้ครับ
คือผมก็ไม่ค่อยมีความรู้นักครับเลยอยากถามว่า
จะส่งค่า ip แบบ $_GET ไปที่ php ไฟล์อื่นอย่างไร
ไฟล์อื่นที่ว่า ก็หน้าตาประมาณนี้
index.php
Code (PHP)
<!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" xml:lang="ko" lang="ko">
<head>
<title>Cross-Browser QRCode
generator for Javascript</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"
/>
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no" />
<script
type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript"
src="qrcode.js"></script>
</head>
<body>
<input id="text" type="text" value="<? echo $ip; ?>" style="width:80%" /><br />
<div id="qrcode" style="width:100px; height:100px; margin-top:15px;"></div>
<script
type="text/javascript">
var qrcode = new QRCode(document.getElementById("qrcode"), {
width :
100,
height : 100
});
function makeCode () {
var elText =
document.getElementById("text");
if (!elText.value) {
alert("Input a
text");
elText.focus();
return;
}
qrcode.makeCode(elText.value);
}
makeCode();
$("#text").
on("blur", function () {
makeCode();
}).
on
("keydown", function (e) {
if (e.keyCode == 13) {
makeCode();
}
});
</script>
</body>
ผมลองทดสอบด้วย http://localhost/qrcode/index.php?ip=192.168.1.4 มันรับค่าได้ครับ
Tag : CakePHP
|
|
|
|
|
|
Date :
2013-08-07 15:26:05 |
By :
กมล |
View :
1419 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ยังไม่ค่อยเข้าใจครับ ประมารซ่าได้ค่าแล้วส่งไปกับ $_GET หรือเปล่าครับ
|
|
|
|
|
Date :
2013-08-08 10:29:19 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|