korrupt_23 Posted November 16, 2003 Share Posted November 16, 2003 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 More sharing options...
Barand Posted November 16, 2003 Share Posted November 16, 2003 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 More sharing options...
korrupt_23 Posted November 16, 2003 Author Share Posted November 16, 2003 Thanks so much man! That stupid litte backtick :x I love this place, everyone always trys to help, or helps wonderfully! Weee! Link to comment https://forums.phpfreaks.com/topic/1375-adding/#findComment-4548 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.