• Hey Guys: I am hoping someone can help me – this is something I am positive I have done before and just cannot remember the proper syntax. What i want to do is have two variables; lets say $q1 and $q2; and I want to pass those to a page using a query string; so I would have: https://mydomain.com/?q1=xx&q2=xx

    I do not know how to put the $variables in where the “xx”s are; i am sure there is a way to do this but cannot find it for the life of me!

    thanks, g

Viewing 1 replies (of 1 total)
  • How about this?

    <form metdhod='get'>
    <input type='text' name='q1' value='XX'><br/>
    <input type='text' name='q2' value='YY'><br/>
    <input type='submit'>
    </form>
Viewing 1 replies (of 1 total)
  • The topic ‘put a variable in a query string?’ is closed to new replies.