NiCrom Posted November 14, 2011 Share Posted November 14, 2011 Hello, I create a new column in tblclients table and i want to update this column from a custom page. I do something like this: $result = mysql_query("SELECT newcolumn FROM tblclients WHERE id=".(int)$_SESSION['uid']); $data = mysql_fetch_array($result); $newcolumn = $data[0]; $smartyvalues["newcolumn"] = $newcolumn; if(isset($_POST['submit'])) { $result = mysql_query("UPDATE tblclients SET newcolumn='test' WHERE id=".(int)$_SESSION['uid']) or die(mysql_error()); $data = mysql_fetch_array($result); } but.. nothing. Please help me, thanks. 0 Quote Link to comment 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.