Guest Posted February 27, 2007 Share Posted February 27, 2007 Hi Is i possible to get this code to work with letters and not only numbers? Am i trying to display a icon that says "Available on request" Then the product quantity is sett to "b". I have changed the sql so that products_quantity can contain varchar, I also changed my products quantity to b on one test product But it does not seem like the code recognize "b" Anybody have a suggestion for this?? <tr> <td> <?php $prod_quantity = tep_get_products_stock($products_id); switch ($prod_quantity) { case 0: // change this to a quantity you want - it's the for "available on request" print '<img src="images/stock_soldout.gif" border="3" title="" alt="Ut Solgt">'; break; case b: // change this to a quantity you want - it's the number for "available within 10 workdays" print '<img src="images/stock_limitedstock.gif" border="3" title="" alt="På Bestilling">'; break; default: //if the quantity is not 1 or 0, this text will be shown. print '<img src="images/stock_instock.gif" border="1" title="" alt="På lager">'; } ?> </td> </tr> Link to comment Share on other sites More sharing options...
Guest Posted February 27, 2007 Share Posted February 27, 2007 major typo in post description sorry. Link to comment Share on other sites More sharing options...
Guest Posted February 27, 2007 Share Posted February 27, 2007 I also wonder how to get this working i the listing of products. picture Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.