|
|
|
สอนสร้าง frame ซ้าย/ขวา ทีค่ะ left.php จะทำอย่างไรให้ ให้หน้า .php ทุกหน้ามี menu(left.php) ด้านซ้ายค่ะ แล้วต้องเปลี่ยน code php |
|
|
|
|
|
|
|
ผมใช้วิธีเพิ่มไว้ใน index เลยครับ แล้วก็เรียกเอาตามชื่อไฟล์ที่ include
คือผมแบ่งเป็นเฟรมไว้หน้าแรกเลยครับ และส่วน content แยกไว้ตรงกลาง
พวกสคริปต่าง ๆ ก็ดึงมาไว้ตรงนี้หละครับ
เวลาแก้ ก็แก้ที่ index ไฟล์เดียว
http://www.wintech.co.th/yasotorn/
user aaaaa pass aaaaa
deawx
[email protected]
ปรึกษา PHP ฟรีจ้า
|
|
|
|
|
Date :
2009-09-20 11:45:09 |
By :
deawx |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
พอจะเข้าใจแล้วค่ะ
ประมาณนี้ใช่ไหมค่ะ ที่ left.php
index.php?crtp=add
index.php?crtp=edit
index.php?crtp=view
index.php?crtp=delete
แล้วเฟรมกลางนี้ จะให้แสดงออกมาอย่างไรค่ะ ขอตัวอย่างหน่อยค่ะ
ขอบคุณค่ะ
|
|
|
|
|
Date :
2009-09-20 11:59:46 |
By :
Ninezy |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอตัวอย่างด้วยครับ สงสัยมานานเหมือนกัน
ขอบคุณครับ
|
|
|
|
|
Date :
2009-09-20 12:14:20 |
By :
ชล |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ก็แบง page ธรรมดานี่หละครับผม ไว้ แล้วกำหนด ตรงหน้าว่างไว้รับค่าหน้าต่าง ๆ
<?php
$pages = $_GET['pages'];
switch ($pages){
if(empty($pages)) {
require_once("pages.php"); #ถ้าไม่มีหน้าใหนให้แสดงหน้านี้
}
case add: require_once "add.php"; break; #ถ้าส่งค่ามาเป็น add ให้ดึงไฟล์นี้มาแสดง
case addcourse : require_once "addcourse.php"; break;
}
?>
ลักษณะแบบนี้คร่าว ๆครับผม
|
|
|
|
|
Date :
2009-09-20 12:34:10 |
By :
deawx |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อ๋อ เข้าใจแล้วครับ
ขอบคุณมากครับ
กระจ่างซักที
|
|
|
|
|
Date :
2009-09-20 12:37:17 |
By :
ชล |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เยี่ยมมากพี่ deawx
อธิบายได้ชัดเจนครับ
+1
|
|
|
|
|
Date :
2009-09-20 12:38:27 |
By :
ชล |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
รูปแบบคำสั่งผิดไหมเอ่ย ใช้ switch แต่มี if ซ้อนเข้ามาอะครับ
switch (variable)
{
case value1 : statement1; break;
case value2 : statement2; break;
case value3 : statement3; break;
case value4 : statement4; break;
default : statementn;
}
|
|
|
|
|
Date :
2009-09-21 20:51:53 |
By :
NanoTHoro |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
งง ๆๆๆ เจงๆ
|
|
|
|
|
Date :
2009-09-22 20:02:46 |
By :
Ninezy |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<frameset rows="*" cols="200,*" framespacing="0" frameborder="NO" border="0">
<frame src="menu.php" name="L" >
<frame src="main.php" name="M">
</frameset>
เวลาลิ้งค์ในไฟล์ menu.php
<div align="center"> <a href="product.php" target="M">product</a> </div>
ใช่คำตอบของคำถามรึปล่าวครับ
|
|
|
|
|
Date :
2009-09-22 20:12:51 |
By :
Sek-Artdrinker |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมใช้แบบนี้นะครับ if..elseif...else... ธรรมดาอ่ะครับ จะตรงหรือไม่ตรงคำตอบก็จะตอบ อิอิอิอิอิ
เมนู
index.php?crtp=add
index.php?crtp=edit
index.php?crtp=view
index.php?crtp=delete
หน้า index.php
ตรงแสดงข้อมูล
Code (PHP)
<?php
if($crtp=="add")
{ include('add.php'); }
else if($crtp=="edit")
{ include('edit.php'); }
else if($crtp=="view")
{ include('view.php'); }
else if($crtp=="delete")
{ include('delete.php'); }
else
include('show.php');//ถ้าไม่มีค่าส่งมาก็ให้แสดงหน้านี้ไปเลย
?>
|
|
|
|
|
Date :
2009-09-22 21:04:14 |
By :
somparn |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณค่ะ แล้วจะลองดูนะคะ
|
|
|
|
|
Date :
2009-09-28 14:18:29 |
By :
Ninezy |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอโทษ นะครับๆ พี่ๆทุก คน ผม ยังงง อยุ่ เลย
คือ ว่า สมมุติ ว่า มี 3 Frame ด้านบน ซ้าย ขาว
ก็เขียน 3 page ด้านบน.php ซ้าย.php ขาว.php
แล้ว include เข้ามาอยู่ใน หน้า Index อะหรอครับ
รบกวนแนะนำ ด้วย นะครับ ขอคุณ ครับๆๆๆๆๆๆๆ
|
|
|
|
|
Date :
2009-09-28 21:33:59 |
By :
tamikazee |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถูกต้องแล้วคร๊าบบบบ
หรือจะใช้วิธีธรรมดาไม่ต้องอินครู๊ท ใช้คำสั่งเฟรมเซ็ต ระบุเอสอาร์ซีของเฟรมเข้ามาโดยตรงก็ได้ครับ ถ้าจะให้ดีใช้ Iframe ดีกว่าครับ กำหนดให้อยู่ในส่วนของตาราง เพราะตารางจัดง่ายกว่าเฟรมคร๊าบบบบบ
|
|
|
|
|
Date :
2009-09-29 06:37:51 |
By :
NanoTHoro |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทำยังไง อะ ครับๆ
ผม ทำไมเป็น อะ ครับ ช่วย แนะนำ หน่อย
ซื้อแผ่น Code ของพี่วิน ไป ยังใช้ไม่เปงเลยอะครับ -*-
|
|
|
|
|
Date :
2009-09-29 15:33:39 |
By :
tamikazee |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองเอาไปเล่นดูละกันนะครับ
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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
<table width="1000" border="1">
<tr>
<td width="216"><? include('menuf.php'); ?></td>
<td width="556">
<?
if($a=="a")
{ include('a.php'); }
else if($b=="b")
{ include('b.php'); }
else if($c=="c")
{ include('c.php'); }
#else n...........
else
{ include('main.php'); }
?>
</td>
<td width="206"> </td>
</tr>
</table>
</body>
</html>
menuf.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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
<table width="230" border="1">
<tr>
<td><a href="index.php?a=a">เมนู1</a></td>
</tr>
<tr>
<td><a href="index.php?b=b">เมน2</a></td>
</tr>
<tr>
<td><a href="index.php?c=c">เมนู3</a></td>
</tr>
<tr>
<td><a href="index.php?d=d">เมนู4</a></td>
</tr>
<tr>
<td><a href="index.php?e=e">เมนู5</a></td>
</tr>
</table>
</body>
</html>
main.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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
main
</body>
</html>
a.php
Code (PHP)
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
a
</body>
</html>
b.php
Code (PHP)
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
b
</body>
</html>
c.php
Code (PHP)
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
c
</body>
</html>
ไม่รู้ใช้ตามต้องการหรือเปล่านะ
|
|
|
|
|
Date :
2009-09-30 00:30:05 |
By :
somparn |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณ phpbasic มากๆค่ะ แล้วจะเอาไปลองดูนะค่ะ
|
|
|
|
|
Date :
2009-09-30 01:56:18 |
By :
Ninezy |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5+2
|
|
|
|
|
Date :
2011-09-21 11:58:14 |
By :
crank |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|