I have a site lets name it http://mysite.com/index.php
which is my main site with all the information and I want to have another page which is something like http://mysite.com/index.php?=premium
and in this premium
page will be totally new whole page. Which means not the same title or not have anything relate to the index.php page.
The reason is that I don't want my visitors to go directly to the premium page
so they have to come to the index.php
page first then click it from there.
Is that possible this way?
@knittl well not sure if my question was cleared
but what is actually happening now that the above code can get me to the premium page fine with no problem
but inside the premium page include many div class and I have this in the premium page
<?php
if(!isset($_GET['ch'])){
$ch = 1;
} else {
$ch = $_GET['ch'];
}
if ($ch == 1) {
echo "<div class='player_live_server_info'>
so what happen now that I have this
<li><a href="tv.php?page=premium?ch=1"><img src="live_img/ch_5.jpg"></a></li>
I don't know if I do it right or wrong but It just redirect back to the normal page.