Jul 14, 2003 #1 overyde Programmer May 27, 2003 226 ZA Can the get command only be used with a form? Reality is built on a foundation of dreams.
Jul 14, 2003 1 #2 vbkris Programmer Jan 20, 2003 5,994 IN nope this will work to: using javascript: location.href='hello.php?id=1' in hello.php u can use $_GET[id] and it will give u 1.... Known is handfull, Unknown is worldfull Upvote 0 Downvote
nope this will work to: using javascript: location.href='hello.php?id=1' in hello.php u can use $_GET[id] and it will give u 1.... Known is handfull, Unknown is worldfull
Jul 14, 2003 #3 vbkris Programmer Jan 20, 2003 5,994 IN it also works with window.open: window.open('hello.php?id=1',.......) Known is handfull, Unknown is worldfull Upvote 0 Downvote
it also works with window.open: window.open('hello.php?id=1',.......) Known is handfull, Unknown is worldfull
Jul 15, 2003 1 #4 DRJ478 IS-IT--Management Aug 10, 2001 2,264 US Any URL can have GET parameters attached. The spectrum of methods that contain URL parameters also includes hyperlinks. Inside PHP: You can always assemble headers within your PHP to send GET data to another script. Upvote 0 Downvote
Any URL can have GET parameters attached. The spectrum of methods that contain URL parameters also includes hyperlinks. Inside PHP: You can always assemble headers within your PHP to send GET data to another script.