I'm trying to send the selection from a drop-down menu to a PHP script as a variable. Can anyone tell me how to script that, or at least point me to a good tutorial?
Are you familiar with working with say, textboxes? If not, try those first.
Once you get the idea, simply apply it to the selection menu, i.e. <select name="varname">
Or for an array, use name="varname[]"
Originally posted by laserlight Are you familiar with working with say, textboxes? If not, try those first. Once you get the idea, simply apply it to the selection menu, i.e. <select name="varname"> Or for an array, use name="varname[]"
Thanks for the help. I've got it all figured out, and have a test script working.