QUOTE(nightfox @ May 24 2005, 04:10 AM)
I know this is a n00b question, but how do I make a website with URLs like that? I have seen it someplace before but I can't seem to find it.
If you have any ideas on how to do this, thanks! I am attempting to learn more PHP as my PHP scripting skills are VERY limited!
[N]F
they are actually part of the GET form data which is automaticall inserted by the browser in the URL link (address bar) before jumping to the next page.
the page that will be juimp to is the one in the form action field.
CODE
<form action='index.php' name='GSHOUT' method='GET' onsubmit="return shout_check('GSHOUT')">
<input type='text' name='Post' class='forminput'> <input type='submit' name='submit' style='margin-bottom:1px' value='Shout' class='forminput'</form>
will draw a text input field with and a submit button
and when the submit button is pressed
will result in
index.php?Post="text of Post"""text of Post" if the same exact data you typed in the textfield..
NOTE: that will only be generated if you use the GET method and not the POST method. I guess you need to learn more from basic form html building.
one more thing, you can also explicitly append those at the webaddress but be sure that you have proper text reader for those infos so you can process them. anyway, you can always ignore all of them and nothing will happen to your program.
Reply