hi guys...here's my code, i've been looking all over the net and just haven't found anything that can make this work, i'm sure i'm doing it wrong or placing my code in the wrong place but any help will do thanks...
basically when you are at one page and want to make a comment for that...i want to pass the variable through the URL..when you click the URL, it takes you to a submit comment form where i will need the variable in the URL... let me know thanks...
heres the main page that has the link in it:
<?
$poi_id='1';
?>
<p style="max-width:584px;"><b><a href="http://www.myurl/review.php?poi_id=$poi_id"><font face="Verdana" size="2" color="#BABAA0">WRITE
A REVIEW</font></a></b></p>
then, on the actual comment page i used $_GET but it hink i'm doing it wrong...
<?
session_start();
if(!session_is_registered(Email)){
header("location:login.php");
}
?>
<?
include( "header.php" );
$_GET[poi_id];
?>
anything will help thanks!