if you try to echo and you use templates
that its wont show anything
not the echo and not the templates
if you included global this will happen to you
but if you will try to do something like
PHP Code:
echo "something here";
die; // you can user exit(); also
then its will work,
you dont belive me ? try it.
also 1 more thing
Quote:
$brand_new_var = $_GET['whatever'];
|
try to do it like that :
PHP Code:
$_GET['whatever'] = "bla";
$brand_new_var = $_GET['whatever'];
then $brand_new_var will have a value.