Jump to content

Adding


korrupt_23

Recommended Posts

Hey, I was just wondering the easiet way to add to a column. I\'m attempting to use:

 


<?

include("connect.php");



$sql4 = "UPDATE `user_info` SET `user_movie_points` = `user_movie_points+1` WHERE `user_id` = \'$userid\' LIMIT 1;";



 	mysql_query($sql4);

?>

 

But it doesn\'t seem to work.

 

Anyone see anything worng, or can give me a better way? :(

Link to comment
https://forums.phpfreaks.com/topic/1375-adding/
Share on other sites

Nearly there! Just move the backtick (although you only need them if your field name is a reserved word or contains spaces)

 

[php:1:6aa6cb6f8e]<?php

$sql4 = \"UPDATE `user_info` SET `user_movie_points` = `user_movie_points` + 1 WHERE `user_id` = \'$userid\' LIMIT 1\";

?>[/php:1:6aa6cb6f8e]

Link to comment
https://forums.phpfreaks.com/topic/1375-adding/#findComment-4545
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.