Jump to content

increment problem


louis_coetzee

Recommended Posts

Hi, I call this code in a function when certain stuff happens. needs to update counter field in db, default it is set to 0. It does increment, but only once. so I end up with 1 and it does'nt want to go to 2 3 4 5 6 etc. Please help

	$dbhost = 'localhost';
$dbuser = 'root';
$dbpass = '';
$dbname = 'lifestylediet';
$conn = mysql_connect($dbhost, $dbuser, $dbpass) or die ('Error connecting to mysql');
mysql_select_db($dbname);

$result = mysql_query("SELECT * FROM tickets where tick_id = '$ticketid'");
while ($row = mysql_fetch_array($result))
{
	$counterval = $row[$counter];
}
	$counterval = $counterval+1;
mysql_query("UPDATE tickets SET counter = '$counterval' where tick_id = '$ticketid'");

Link to comment
Share on other sites

Just run the update query. No need to pull the information out...

 

mysql_query("UPDATE tickets SET counter = (`counter`+1) where tick_id = '$ticketid'");

 

Would update the counter variable to add one to it. One query and no extra code needed.

Link to comment
Share on other sites

Hi, I call this code in a function when certain stuff happens. needs to update counter field in db, default it is set to 0. It does increment, but only once. so I end up with 1 and it does'nt want to go to 2 3 4 5 6 etc. Please help

	$dbhost = 'localhost';
$dbuser = 'root';
$dbpass = '';
$dbname = 'lifestylediet';
$conn = mysql_connect($dbhost, $dbuser, $dbpass) or die ('Error connecting to mysql');
mysql_select_db($dbname);

$result = mysql_query("SELECT * FROM tickets where tick_id = '$ticketid'");
while ($row = mysql_fetch_array($result))
{
	$counterval = $row[$counter];
}
	$counterval = $counterval+1;
mysql_query("UPDATE tickets SET counter = '$counterval' where tick_id = '$ticketid'");

 

Don't you need to put:

 

$counterval = $counterval+1;
mysql_query("UPDATE tickets SET counter = '$counterval' where tick_id = '$ticketid'");

 

inside the while loop?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.