English for dummies! I'm the fool you're referring to you arragont shit and you're the one steering people away when they come to share knowledge and ask for help.
You don't get it, what do I want with a tax rate table. I enjoy interacting with programmers. Keeps me away from drugs.
Not sure if that last one was for me - my point when pointing you to the tax-rate page etc. was basically to show you a better way to implement what you're seemingly trying to make - ie. a way to choose a place/taxrate and use that value further on - databases are usually the best way to keep static values, and reuse them (with $_POST-variables, sessions etc. of course as a go-between, for instance). I think what you're doing is a good thing - learning stuff is always good, and one never gets too old to learn more.
<form NAME="Form" wheres's your quotes around the NAME of the form? is that going to be able to pull a string of a form name with no quotes? If not your form has no name because of that and therefore never calls the form name when its submitted with the submit button. and action is never triggered ...and the whole park shuts down .. the firework just its there ...no pizzazzy sparks or flight... the shuttle sits on the launchpad ..nuffin....the rabbits hop in and out of your rope snare.... you push down on the tnt T stick.... and you play a strange crappy wild western game that keeps saying "nothin happens.....nothin happens...nothin happens ..in 1999 and the same happens here with no form name ... nothin happens, (click) nothin happens ..(click click) ..nothi..nothing happens
My question would be why the **** would you PUT name on a form in the first place. The only legitimate reason to do so is to support nyetscape 4 style scripting access to the form; at which point once again welcome to having one's head wedged up 1997's arse. Admittedly, SO many people still do write .js 1990's style for accessing forms.
call it habit, thats why ..my basic HTML <form name ="formX" method="post" action ="index.php"> something like that. I haven't updated my HTML as much as PHP side. it works , but you should give example of your idea ..maybe i'll use it. thanks
I stayed up all night crafting a working example for you. Here's what I came up with: <form method="post" action="index.php"> Code (markup): I put a lot of work into it. I hope it helps!
Partly correct Nico, but I'd probably have an ID for targeting it and it's children with CSS and scripting... since getElementByxxxxx and/or walking the DOM is how MODERN scripts are supposed to be written... instead of the outdated, slow and PROPRIETARY nyetscape style. (even if support is present).
Well yes, if you want to style it or access it with Javascript, I'd go with the ID too. But if that's not necessary (like in the OP's post) then there's no need to add it. Otherwise you're right, of course.