captnops
IS-IT--Management
- Feb 12, 2003
- 141
I am attempting to convert PHP code functionality for a site I am working as to vbscript. I am not a programmer, so I thought I would ask. The functionality allows frame behavior in the site without using frames (using CSS)
Here is the php:
<?php
if (!isset($_GET['page'])) $page= 'accueil'; else $page= $_GET['page'];
switch($page)
{
case 'accueil': include ('accueil.htm');break;
case 'presentation': include ('presentation.htm');break;
case 'suite':include ('suite.htm');break;
case 'fin':include ('fin.htm');break;
}
?>
Thank you
Here is the php:
<?php
if (!isset($_GET['page'])) $page= 'accueil'; else $page= $_GET['page'];
switch($page)
{
case 'accueil': include ('accueil.htm');break;
case 'presentation': include ('presentation.htm');break;
case 'suite':include ('suite.htm');break;
case 'fin':include ('fin.htm');break;
}
?>
Thank you