Hi guys ...
I am writing a script that updates a record on the server, and am needing to select that same record right away.
Is there an easy way for me to get all the new data (all fields) from this record, without performing another select query?PHP Code:$s_totalplays = "UPDATE tbl SET interactive = interactive+'1' WHERE user='".$user_id."'";
$q_totalplays = mysql_query($s_totalplays);
Does this make sense?
D




Bookmarks