hi
im using dynamic pages for my website everything is working great but i ran into a problem i have add this webcam script that will let people record and save there video it will also generate a link for them to view the video my problem is because it is generating a link the link is not in my dynamic pages script is there anyway to get this to work with dynamic pages ? thanks...
dynamic pages scrip im using:
index.php
include_once("include/config.php");
$q = $_GET['id'];
switch($q) {
case 'signup':
$page_title="Sign Up";
define("BODY_TEXT","$q.php");
break;
define("BODY_TEXT","index.php");
break;
}
require(BASPATH . TEMPLATE .'index.php');
config.php
define("BASPATH","include/");
define("PAGE","pages/");
define("TEMPLATE","template/");
$menu = array( "index" => "Home",
"signup" => "Sign Up",
$seo="true";
if ($seo=="true"){
$seo="";
}else{
$seo="index.php?id=";
}
Urls:
(my urls look like this:)
index.php?id=about
index.php?id=contact etc..
--------------------------------------------------
(video script urls look like this:)
videodisplay.php?msgID=Jon181020&uName=Jon
videodisplay.php?msgID=Kim181020&uName=Kim etc..
---------------------------------------------------
(want them to look like this to match the rest of my site with the index.php?id=:)
index.php?id=?msgID=Jon181020&uName=Jon
index.php?id=?msgID=Kim181020&uName=Kim etc..