Hey, right after I installed PHP I cannot do this in any of my html forms:
<form name="form1" action="/folder/anotherfolder/whatever">
I figured out the problem is because I use / instead of \.
I am running Apache locally on XP for dev purposes.
If I change it to this it will work fine:
<form name="form1" action="/folder\anotherfolder\whatever">
Does anybody know what the problem is?
Thanks.

