Is it possible to have a link with more then one question mark? For example: <a href=\"editfield.php?id=3?table=stuff\">
If not, how else can I pass more then one value without a form?
use & to seperate variables in a url
ie http://site.com/name.php?name=me&email=me@me.com etc
If you're passing text that might have an & in it, this could cause a problem, along with spaces and question marks. Be sure to urlencode() your url before you print it out to a href= statement.
---John Holmes...