snike Established Member ★ 15 ★ Impact 3 Apr 30, 2006 774 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());