Hey guys,
How do i make the browser to display the full path instead of just index.php?
Example: I want this: /index.php?domain=JT%20Pro&domain2=JT%20Pro1%207&submit Instead of this: /index.php
Thank you in advance!
🙂
that is a submit using the get method
if you want to add items into the url thru a link
echo "<a href='mypage.php?id=$id&var2=$var'>click here</a>";
Originally posted by bastien that is a submit using the get method if you want to add items into the url thru a link echo "<a href='mypage.php?id=$id&var2=$var'>click here</a>"; [/B]
Originally posted by bastien that is a submit using the get method if you want to add items into the url thru a link
[/B]
Bastein,
I am not sure where would i add this?
my submit code is this:
<input name="submit" type=submit class='standard' value='Go!'>
you can add it to the action attribute of the form tag
Or just change the form method to get...
Is it possible you can tell me how to add it to the action attribute of the form tag, or change the method to get....? 🙂
<form name='myform' method='post' action='myphppage.php?id=<?=$id?>&anothervar=<?=$somevar?>'>
Thank you!!!