Hi,
I have a drop down in my page, what i will do with that drop down is i have a table in my database, which have values and this table will refer that ID and pick the name of that values and display in the drop down box.
my table have ID, name, quantity, stock and date created. now what i want to do is when
the stock is <=0 the drop down should add sold out in front of the attributes.
Ex:
my drop down box is like this:
when the customer comes and purchase some fruits from here
Ex :
i have apple - 2, orange - 1, graphs - 3, mango - 5.
when customer orders orange and orange is sold out. then it will will automatically come to 0 (zero) in database. [stock = 0]
what i want to do is when stock is 0 i should show the sold out message with that attribute like:
I tried this but every time i refresh my page one sold out word is adding in the drop down list.
what method i can go with this, i need some solution or idea to do this, can any one help me in this please.
I need to know whether i m clear with my point??
Thanks in advance
Regards
magesh
I have a drop down in my page, what i will do with that drop down is i have a table in my database, which have values and this table will refer that ID and pick the name of that values and display in the drop down box.
my table have ID, name, quantity, stock and date created. now what i want to do is when
the stock is <=0 the drop down should add sold out in front of the attributes.
Ex:
my drop down box is like this:
Code:
<select name="sample" id="sample"> <option value="34">Apple</option> <option value="35">orange</option> <option value="36">graphs</option> <option value="37">mango</option> </select>
Ex :
i have apple - 2, orange - 1, graphs - 3, mango - 5.
when customer orders orange and orange is sold out. then it will will automatically come to 0 (zero) in database. [stock = 0]
what i want to do is when stock is 0 i should show the sold out message with that attribute like:
Code:
<select name="sample" id="sample"> <option value="34">Apple</option> <option value="35">sold out - orange</option> <option value="36">graphs</option> <option value="37">mango</option> </select>
what method i can go with this, i need some solution or idea to do this, can any one help me in this please.
I need to know whether i m clear with my point??
Thanks in advance
Regards
magesh
Comment