{% else-1 %}
Как сделать в одном php файле несколько
страниц

                        
<?php
error_reporting(0);
$title='название';
include "head.php";
if(!empty($_GET['act'])){$act = $_GET
['act'];} else {$act = '';}
switch($act){
default:
//основная страница
echo "<a href=\"index.php?act=1\">первая
страница</a><br>";
echo "<a href=\"index.php?act=2\">вторая
страница</a><br>";
break;
//основная страница
//страница index.php?act=1
case '1':
break;
//страница index.php?act=1
//страница index.php?act=2
case '2':
break;
//страница index.php?act=2
}
include "foot.php";
?>
1 17 0
0

Нет фото
• 7 окт 2013, 20:26


*