I have two blank applications: blank1 and blank2.
blank1(on execute) has this:
///
sc_redir(blank2,source=1);
///
blank2(on execute) has this:
///
$source = $_GET[‘source’];
if(isset($source))
{
echo “source=$source”;
}
///
I run blank1 and it redirects but the parameter doesn’t echo out for me on blank2
I just get this: Error Undefined index: source
What am I missing here?