php-db | 2001072
Date: 07/24/01
- Next message: Matt Nigh: "[PHP-DB] another php/mysql problem"
- Previous message: Matthew Loff: "RE: [PHP-DB] mysql and oracle outer join syntax"
- Next in thread: Phillip Bow: "[PHP-DB] Re: php script showing up on web page!!!!"
- Reply: Phillip Bow: "[PHP-DB] Re: php script showing up on web page!!!!"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Here is the link to the problem page,
http://www.youngsmall.com/cgi-local/shop.pl/page=index222.htm
This PHP script shows up below "buy now" button.
Can anybody tell me what I am doing wrong?
This is script that I am using on each buy buttons,
<?php
$link = mysql_connect("xxxxx","xxxxxx","xxxxxx")
or die ("Could not connect");
if (! <email protected>("xxxxx") ) {
echo( "<P>Unable to locate the inventory " .
"database at this time.</P>" );
exit();}
$itemx = "6505";
$sql = "SELECT quantity FROM inventory WHERE item = '$itemx'";
$result = mysql_query($sql,$link);
$row = mysql_fetch_array($result);
// you have to fetch the result into an array to access the info in the db
$num = $row["quantity"];
// NOW we can compare $num ;)
if ($num < 1) {
echo "<b><font color=\"#FF0000\">Out of Stock</font></b>";
} else {
echo "<b><font color=\"#0000FF\">In Stock</font></b>";
}
mysql_close($link);
?>
Thanks for your time.
Tony
-- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: php-db-unsubscribe <email protected> For additional commands, e-mail: php-db-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: Matt Nigh: "[PHP-DB] another php/mysql problem"
- Previous message: Matthew Loff: "RE: [PHP-DB] mysql and oracle outer join syntax"
- Next in thread: Phillip Bow: "[PHP-DB] Re: php script showing up on web page!!!!"
- Reply: Phillip Bow: "[PHP-DB] Re: php script showing up on web page!!!!"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

