I have the following problem: $_POST["val"] and $_GET["val"] variables can
only be used when in the correct format (not $val), but when I define a
variable within my PHP page (eg $internal_var = "value" ) it doesn't work
and is not found. Why is this?
I have this code in an Apache .htaccess file:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILEN AME} !-f
RewriteCond %{REQUEST_FILEN AME} !-d
RewriteRule (.*) /ShareMonkey.net/Web/index.php
</IfModule>
Do I need to add some extra code to allow for internal variables?
TIA
only be used when in the correct format (not $val), but when I define a
variable within my PHP page (eg $internal_var = "value" ) it doesn't work
and is not found. Why is this?
I have this code in an Apache .htaccess file:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILEN AME} !-f
RewriteCond %{REQUEST_FILEN AME} !-d
RewriteRule (.*) /ShareMonkey.net/Web/index.php
</IfModule>
Do I need to add some extra code to allow for internal variables?
TIA
Comment