|
|
|
ถามเรื่องรูปแบบลิ่งครับมันงงจริงครับมือใหม่ครับอยากรู้เรื่องครับ |
|
|
|
|
|
|
|
? เค้าคั่นระหว่าง web root, web directory หรือ domain ครับ
ส่วน modules=update&id=9 ที่อยู่หลังจาก ? จะเป็นการส่งค่าผ่าน url หรือค่า $_GET ใน php ครับ
modules=update หมายถึงส่งค่า modules เท่ากับ update
id=9 หมายถึงส่งค่า id เท่ากับ 9
รับค่า(PHP)
$mudules = $_GET['modules'];
$id= $_GET['id'];
|
|
|
|
|
Date :
2012-12-08 18:39:42 |
By :
mangkunzo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แล้วมันสามารถเอาไปประยุกทำไรได้มังหรอครับ
|
|
|
|
|
Date :
2012-12-08 23:00:09 |
By :
relax010 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้าอยากศึกษาแนะนำลองดูได้จาก code นี้ครับ อันนี้ของ maxsite
mainfile.php
<?
function GETMODULE($name,$file){
global $MODPATH, $MODPATHFILE ;
if(!$name){$name = "index";}
if(!$file){$file = "index";}
$modpathfile="modules/".$name."/".$file.".php";
if (file_exists($modpathfile)) {
$MODPATHFILE = $modpathfile;
$MODPATH = "modules/".$name."/";
}else{
die ("No File<meta http-equiv='refresh' content='3;url=index.php'>");
}
}
?>
index.php
<?
require_once("mainfile.php");
$PHP_SELF = "index.php";
GETMODULE($_GET[name],$_GET[file]);
?>
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>ThaiCreate</title>
</head>
<table>
<tr>
<td>
<ul>
<li><a href="index.php">หน้าแรก</a>
<li><a href="?name=contact">ติดต่อสอบถาม</a>
</ul>
</td>
</tr>
<tr>
<td>
<? include ("".$MODPATHFILE."");?>
</td>
</tr>
</table>
<body>
</body>
</html>
สร้างโฟนเดอร์ modules
แล้วสร้างโฟนเดอร์ index กับ contact ไว้ใน modules
จากนั้นสร้าง index.php ไวในโฟนเดออร์ index กับ contact
modules/contact/index.php
<table>
<tr>
<td>ติดต่อสอบถาม</td>
</tr>
</table>
modules/index/index.php
<table>
<tr>
<td>หน้าแรก</td>
</tr>
</table>
ลองทำดูครับ
|
|
|
|
|
Date :
2012-12-08 23:13:13 |
By :
oxWillxo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อันนี้เค้าเรียก mod rewrite url ครับ ในนี้มีข้อมูลเพียบ ค้นหาดู
แล้วที่ว่า maxsite นี่ หมายถึง Atomy Maxsite หรือหรือเปล่าครับ
ถ้าจะเลือกใช้ CMS สร้างเว็บ ผมว่าลองหลายๆตัวมาเปรียบเทียบก็ดีน่ะครับ
|
|
|
|
|
Date :
2012-12-08 23:50:59 |
By :
mangkunzo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|