As a follow-up to my previous post about setting up apache, php and mysql on windows vista, here are some useful links:
Archive for July, 2007
more apache setup
Saturday, July 28th, 2007PHP request URI
Friday, July 27th, 2007$_SERVER['REQUEST_URI'];
Passing a function call as a JSON parameter
Friday, July 27th, 2007
<script language="javascript">
function f(o){
if (o.f){
o.f;
}
}
function f2(a, b){
alert(a+","+b);
}
var args = {a:1, b:2, c:3, f:f2(1,2)};
f(args);
</script>
Installing Apache, MySQL and PHP on Windows Vista
Tuesday, July 17th, 2007When installing Apache, MySQL and PHP on Windows Vista, remember to disable User Account Control:
- Run MSCONFIG from the run/search menu.
- Select the Tools tab.
- Select Disable UAC and press Launch
- Restart computer
Instead of installing Apache, MySQL and PHP separately, I ended up installing the WAMP Server, which went very smoothly. You may have to restart your computer one more time before PHP sees your MySQL server.