Thread: HTML question
View Single Post
Old 08-04-2003, 12:24 PM   #1 (permalink)
mpedrummer2
Insane
 
HTML question

Man, remember HTML? Me neither.

So, the dilly is thus...I've created a site using PHP and MySQL, and I need to pass variables from one page to another. Right now, I use forms with the POST method for most of it, but occasionally, I need a normal old hyperlink.

My question...is there a way to use POST with a hyperlink? Right now, I have something like

Code:
showSingle.php?id=74&name=test&other=thing...
Is there any way to POST that? A lot of my scripts are using the $_POST array, and it just seems easier to continue to do so, rather than switching to $_GET for some of it.

Any ideas? I guess I could use a frameset, and basically just hide ALL of the URLs, but that sucks, and I do want to use GET for some, so people can bookmark pages, etc.

MPEDrummer
__________________
My sig can beat up your honor student.
mpedrummer2 is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73