|
|
|
มีวิธีซ่อนชื่อไฟล์ที่แสดงบน address bar ที่เราลิ้งไปไหมครับ ต้องการซ่อนเพื่อไม่ให้คนอื่นรู้ลิ้งอะครับ |
|
|
|
|
|
|
|
ค้นหาคำว่า mod_rewrite ครับ แล้วจะทราบคำตอบ
|
|
|
|
|
Date :
2013-02-09 18:58:45 |
By :
nutsuanplu |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
งั้นเอาวิะีนี้เอาไหมครับใช้ ajax เรียกเอาครับเพราะไม่มีการรีเฟสหน้า
ดั้งนั้นปัยหานี้จะไม่มีครับ
|
|
|
|
|
Date :
2013-02-09 19:59:14 |
By :
dannan882 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?
switch ($_GET["x"]) {
case "menu1":
$src_page = 'menu1.php';
break;
case "menu2":
$src_page = 'menu2.php';
break;
default:
$src_page = 'index.php';
}
?>
<iframe name="thisisaframe1" id="iframe1" src="<?php echo $src_page; ?>"></iframe>
<a href="?x=menu1">menu1</a>
<a href="?x=menu2">menu2</a>
อยากซ่อนอะไรก็เปลี่ยนตรง case "menu1": case "menu2": แบบนี้ได้ป่ะ
จะส่งค่าอะไรก็ไปเปลี่ยนตรงที่ $src_page = 'menu1.php'; $src_page = 'menu2.php';
|
ประวัติการแก้ไข 2013-02-09 21:49:02
|
|
|
|
Date :
2013-02-09 21:47:51 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
index.php
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title> New Document </title>
<meta name="Generator" content="EditPlus">
<meta name="Author" content="Unidentifier">
<meta name="Keywords" content="">
<meta name="Description" content="">
<script src="http://code.jquery.com/jquery-latest.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=utf8" />
</head>
<body>
<a href="main.php">หน้าแรก</a> | <a href="test1.php">หน้าทดสอบ 1</a> | <a href="test2.php">หน้าทดสอบ 2</a> <br />
<div id="pagecontainer"></div>
<script>
$("a").click(function(event){
event.preventDefault();
var url = $(this).attr("href");
$("div#pagecontainer").load(url);
});
</script>
</body>
</html>
|
ประวัติการแก้ไข 2013-02-09 23:43:43
|
|
|
|
Date :
2013-02-09 23:42:57 |
By :
sakuraei |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากครับ สำหรับคำแนะนำ ใช้ได้ดีมากเลยครับผม
|
|
|
|
|
Date :
2013-02-09 23:49:49 |
By :
sailorfah |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้าเปลี่ยนกดที่ form อะครับ มันคือ action $(this).attr("href"); เปลี่ยนเป็น $(this).attr("action"); รึป่าวครับ แล้วค่าในฟรอมจะไปด้วยป่าวครับ
|
|
|
|
|
Date :
2013-02-10 00:02:15 |
By :
sailorfah |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมลองแล้วค่าที่ส่งเป็น post ใน form ไม่มาด้วยอะครับ ต้องเขียนอย่างไรเหรอครับ
|
|
|
|
|
Date :
2013-02-10 00:12:39 |
By :
sailorfah |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|