here is my path
main:
Members/name.html
search.php
Members is a folder
my html code: in name.html
<form action="../search.php" method="get">
<div>
<br/>
<input type="text" name="input" value="Search the
site…" onfocus="this.value=(this.value=='Search the site…')?
'' : this.value ;" />
<input type="submit" name="go" id="go" value="GO" />
</div>
but when i ran this and put something in the search bar it didn't work.
i read this
Using HTML form action with a php script being in another directory (relative paths)
but it still doesn't work
when i put the html file in the same directory as the search.php
it's working great (i'm changing the path to ./search.php
when it's in the same directory)
but when i'm putting it back to the another directory it's not working again.