Hi
I am trying to make a simple get form that asks the user to enter their name and then it returns their name on the next page, i have managed to do this but now i would like to have nice clean SEO Urls insted of the ugly get urls. How do i make do this?
I am currently doing:
Index.php
and
welcome.php
So my question is how to make this have clean urls such as domain.com/'search-phrase'?
Thanks
I am trying to make a simple get form that asks the user to enter their name and then it returns their name on the next page, i have managed to do this but now i would like to have nice clean SEO Urls insted of the ugly get urls. How do i make do this?
I am currently doing:
Index.php
Code:
<html> <form action="welcome.php" method="get"> Name: <input type="text" name="name" /> <input type="submit" /> </form> </html>
welcome.php
Code:
<html> Welcome <?php echo $_GET["name"]; ?>.<br /> </html>
Thanks
Comment