Using php and html forms to update a mysql database

Reply

Join Date: Dec 2007
Posts: 4
Reputation: djcritch is an unknown quantity at this point 
Solved Threads: 0
djcritch djcritch is offline Offline
Newbie Poster

Using php and html forms to update a mysql database

 
0
  #1
Dec 19th, 2007
Hi,

Got a bit of a problem with form, i need to be able to update a number in a mysql database using an html form. so basically i need to increment or decrement a number using a text box and a submit button.

heres the code i got:

==============================================

<form name="input" method="get" action="select.php">
Add Stock : <input type="text" name="number1">
<input type="submit" value="+">
</form>
</pre>

<?php
$add = $_REQUEST['number1'];

// update table "goods" contents
$sql =
"UPDATE goods SET stock = stock + $add WHERE id = 1";
"UPDATE stock";
if(!($result = mysql_query($sql,$dblink))) {
print "Fail: query";
exit;
}

?>

===============================================

the code half works but you need to refresh the page and it not updating the database correctly.

also if i made a copy of this code to do the stubtraction it all goes a bit tits up

im guessing there must be a better way for me to do this ?

Someone please help! Merry christmas!
Reply With Quote Quick reply to this message  
Join Date: Nov 2007
Posts: 3,678
Reputation: nav33n is a jewel in the rough nav33n is a jewel in the rough nav33n is a jewel in the rough 
Solved Threads: 319
nav33n's Avatar
nav33n nav33n is offline Offline
Senior Poster

Re: Using php and html forms to update a mysql database

 
0
  #2
Dec 19th, 2007
Welcome to Daniweb. This isnt the right forum to post your code. Post it in php forum. Cheers!
Oh, and one more thing. when you post your code, please use [ code] .. [/ code] tags.
Last edited by nav33n; Dec 19th, 2007 at 8:00 am.
Ignorance is definitely not bliss!

*PM asking for help will be ignored*
Reply With Quote Quick reply to this message  
Join Date: Aug 2007
Posts: 3,562
Reputation: jasimp has a spectacular aura about jasimp has a spectacular aura about jasimp has a spectacular aura about 
Solved Threads: 50
Featured Poster
jasimp's Avatar
jasimp jasimp is offline Offline
Senior Poster

Re: Using php and html forms to update a mysql database

 
0
  #3
Dec 19th, 2007
Welcome!
"Argyou not with the hand you are dealt in cards or life." ---- Wizard and Glass
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Other Threads in the Community Introductions Forum
Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC