How do I get the following code to work ?
<INPUT TYPE="radio" NAME="ID" VALUE="1">Option 1
<INPUT TYPE="radio" NAME="ID" VALUE="2">Option 2
<FORM METHOD="POST"><INPUT TYPE="submit" NAME="b1"...
Hi,
I need to use multiple forms like so:
<FORM METHOD="POST" INPUT TYPE="submit" NAME="1" VALUE="1" CLASS="buttons"></FORM>
<FORM METHOD="POST"><INPUT TYPE="submit" NAME="2" VALUE="2 similar"...
sorry the SQL statement above is supposed to be:
SELECT Item.itemID, Item.itemDescription
FROM ITEM
INNER JOIN Bid ON item.itemID = bid.itemID
INNER JOIN Buy ON item.itemID = buy.itemID
WHERE "my conditions"
ORDER "my order"
Oooops :-)
Hi I have 3 tables:
ITEM
BID
BUY
This is what I have:
SELECT Item.itemID, Item.itemDescription
FROM ITEM
INNER JOIN Bid ON item.itemID = bid.itemID
INNER JOIN Buy ON item.lotID = buy.lotID
WHERE "my conditions"
ORDER "my order"
The problem here is, it will only return...
Hi,
How do I go about select a "unknown" number of checkboxes ?
What I mean by unknown is that the number of checkboxes get determined from the amount of records which are returned from the database. The checkboxes all have the same name but their value is "Dynamicaly"...
Hi,
I have just spent the last 9 months writing a application, to find out that I am supposed to use CFLOCK everytime I set a session variable ?!?
I have read Macromedia's docs on CFLOCK, but don't really understand.
Can somebody explain why I have to use CFLOCK every time I set a session...
I have tried that, but when you click on the button, it DOES disable but the form does NOT submit.
This is what I was saying the form must be submitted after disabling the button.
I don't want to add:
document.form1.submit();
to the JS code either, because my page has to be compatible if the...
I have two buttons on the bottom of my form (YES & NO). Both buttons will submit the form to itself and then determine where to go depending on the button pressed.
What I want is to be able to disable both of the buttons when you click YES and continue to submit the form, but just submit the...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.