i will try to explain this the best way i can...
i am using the following code to get parameters from the url;
$var = @$_GET['tipid'] ;
$trimmed = trim($var); //trim whitespace from the stored variable
$limit=1;
// check for an empty string and display a message.
if ($trimmed == "")
{
echo "<p>Please enter a search...</p>";
exit;
}
which works fine when the script is the parent however i would like the script now to get the parameters from its parent url as the script will be inside a frame.
i have redirected to parameters to a html page with no problems but the fames containing the $_Get string are not reading parameters and returning "please enter a search..."
the reason i am doing this is because i would like to have around 5 frames reading the same parameter and only one submit button for parameter entry.
its been 4 very long night and i have researched but no results matching my criteria, im sure this shouldnt be this hard?
please help thanks in advance...