Agar file file yang dipanggil ada di index.php dan tidak ganti halaman maka file
index.php , diubah (tempat sebelah kanan)
<?php
if ($_GET['a']=="welcome" || $_GET['a']==""){
include('welcome.php');
}
elseif ($_GET['a']=="tambah_login"){
include('tambah_login.php');
}
?>
Cuplikan Script index.php :
<tr>
<td valign="top" bg height="200"><font >
<a href="index.php?c=home"> Home</a></font><br><font face="Calibri">
<a href="index.php?c=profile"> Profile</a></font></td>
<td colspan="2" valign="top">
<?php
if($_GET['c']=="home" || $_GET['c']==""){
include "home.php";
}
elseif($_GET['c']=="profile"){
include "profile.php";
}
?>
</td>
</tr>
Keterangan :
Tulisan <a href="index.php?c=home"> Home</a> : link ke home.php
Tulisan <a href="index.php?c=profile"> Profile</a> : link ke profile.php
Tulisan :
<?php
if($_GET['c']=="home" || $_GET['c']==""){
include "home.php";
}
elseif($_GET['c']=="profile"){
include "profile.php";
}
?>
File yang akan dipanggil
Download ebook..klik disini
1 komentar:
logika nya seperti pakai iframe ya?!
15 Februari 2012 pukul 19.57Posting Komentar