snike Established Member โ 15 โ Impact 3 Apr 30, 2006 781 views 1 reply #1 Let's say u have a column in mysql and it has the value 100 and you wanted it to become 95 using PHP. How can I do that?
Let's say u have a column in mysql and it has the value 100 and you wanted it to become 95 using PHP. How can I do that?
Eric VIP Member VIP โ 20 โ Impact 328 May 1, 2006 #2 PHP: $query = mysql_query("UPDATE table SET column = 95") or die(mysql_error());