hi erveryone,
yesterday i wanted to set up mac os x, php and mysql. i want to run this configuration so my team and i can upload files and project descriptions from university. i wrote a little shell script which always tells my website the dynamic ip that my computer has at the moment.
to this point, everything works awesome. my only problem is i can't pass parameters on my local server. the scripts ran on my remote server, so they must be correct.
here is an example of whta i want to do:
index.php:
<a href="test.php?case=true">TEST</a>
tset.php:
<?php
if ($case=="true") {
echo "hello world";
}
?>
it doesn't recognize the parameter that i pass. does anybody know what this is? maybe a setting in the http.conf file?
best regards
rudy