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? Quote 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] Quote 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! Quote Link to comment https://forums.phpfreaks.com/topic/1375-adding/#findComment-4548 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.