NamePros
Welcome, Guest! Ready to make a name for yourself in the domain business? We welcome both the hobbyist and professional domainer to join the discussion as part of the NamePros community.

Click here to create your profile to start earning reputation for posting, and trader ratings for buying & selling in our free e-marketplace. Build your trader rating with each successful sale. Our system has tracked over 100,000 sales and counting!
FAQ & TOS Register Search Today's Posts Mark Forums Read

Go Back   NamePros.com > Website Development Discussion Forums > Programming > CODE
Reload this Page php code for inventory system in updating item quantity

CODE This forum is for posting code snippets and example scripts that aren't quite tutorials, but could be useful for others. You may post code snippets and/or completed scripts that you've written and want to share here.

Advanced Search
8 members in live chat ~  


Closed Thread
 
LinkBack Thread Tools
Old 03-11-2007, 09:09 PM THREAD STARTER               #1 (permalink)
New Member
Join Date: Jan 2007
Posts: 17
cotton is an unknown quantity at this point
 



php code for inventory system in updating item quantity




recently,im developing an inventory system. the problem is i still dont know how to automatically update the quantity in the stock after the user take the items and how to add the item to the cart as in a shopping cart system. pls help..im using easyphp and i do not use class and function in my system.help me pls...

this is the sample of my code:
<table width="80%" border="1" align="center" cellpadding="0" cellspacing="1" bordercolor="#CCCCCC">
<tr>
<td width="18%" bgcolor="#E0E2EB"><div align="left">Description : </div></td>
<td width="82%"><? echo $row['description']; ?></td>
</tr>
<tr>
<td bgcolor="#E0E2EB"><div align="left">Item Code : </div></td>
<td><? echo $row['item_code']; ?></td>
</tr>
<tr>
<td bgcolor="#E0E2EB"><div align="left">Category : </div></td>
<td><? echo $row['category']; ?></td>
</tr>
<tr>
<td bgcolor="#E0E2EB"><div align="left">Current quantity : </div></td>
<td><? echo $row['quantity']; ?></td>
????: NamePros.com http://www.namepros.com/code/303871-php-code-inventory-system-updating-item.html
</tr>
<tr>

<td bgcolor="#E0E2EB">Required quantity : </td>
<td><input type="text" name="quantity" value="<? echo $row['quantity']; ?>">
<input type="hidden" name="id" value="<? echo $row['quantity']; ?>"></td>

</tr>



</table>


thnx in advance..

i stored the cart in the database..

Anyone..help me pls..i need the code so badly.
cotton is offline  
Old 03-11-2007, 09:34 PM   #2 (permalink)
AzN
is on hiatus
Join Date: May 2006
Posts: 2,449
AzN has a reputation beyond reputeAzN has a reputation beyond reputeAzN has a reputation beyond reputeAzN has a reputation beyond reputeAzN has a reputation beyond reputeAzN has a reputation beyond reputeAzN has a reputation beyond reputeAzN has a reputation beyond reputeAzN has a reputation beyond reputeAzN has a reputation beyond reputeAzN has a reputation beyond repute
 


Find Marrow Donors! Ethan Allen Fund Ethan Allen Fund Ethan Allen Fund Save a Life Save a Life Save a Life Save a Life Save a Life Save a Life VA Tech Memorial VA Tech Memorial VA Tech Memorial VA Tech Memorial Save a Life Save a Life Save a Life
You can add upon checkout.
Here's just a sample of what you want to use...
Code:
$item = $_GET['item']

$result = mysql_query("SELECT * FROM inventory
 WHERE item='$item'") or die(mysql_error());  

$row = mysql_fetch_array( $result );

$count = $row['count'] - 1;

$result = mysql_query("UPDATE inventory SET count='$count' WHERE item='$item'") 
or die(mysql_error());
__________________
Currently on hiatus. Back whenever.
AzN is offline  
Old 03-12-2007, 01:59 AM THREAD STARTER               #3 (permalink)
New Member
Join Date: Jan 2007
Posts: 17
cotton is an unknown quantity at this point
 



thank u very much!! i will try that on..
cotton is offline  
Old 03-12-2007, 08:54 PM THREAD STARTER               #4 (permalink)
New Member
Join Date: Jan 2007
Posts: 17
cotton is an unknown quantity at this point
 



how to show the item in the cart?
cotton is offline  
Old 03-13-2007, 11:45 PM   #5 (permalink)
cef
NamePros Regular
Join Date: May 2004
Location: NYC
Posts: 236
cef is a jewel in the roughcef is a jewel in the roughcef is a jewel in the rough
 


Animal Rescue
Ack! Never trust user input (e.g., $_POST and $_GET variables). The above code is open to a sql injection.

Replace
PHP Code:
$item $_GET['item']; 
with
PHP Code:
$item mysql_real_escape_string($_GET['item']); 
Also, you might want to check if the item actually exists, and if you have any in stock:
PHP Code:
$row mysql_fetch_array$result );

if (
$row === false)
{
        echo 
'this item does not exist!';
        return; 
// or whatever you need to do
}
else
{
        if (
$row['count']  == 0)
        {
             echo 
'sorry, none in stock.';
             return; 
// or whatever you need to do
        
}

        
// if you got here you have stock on hand, so continue
????: NamePros.com http://www.namepros.com/showthread.php?t=303871
        
$count $row['count'] - 1;
        
// etc...

Just a rough draft, but you get the idea.
cef is offline  
Closed Thread


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools


 
All times are GMT -7. The time now is 03:36 PM.

Domain name forum recommended by Domaining.com Powered by: vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.6.0 Ad Management plugin by RedTyger