I need to update a field on a Submit click event. I've tried using the Server Behavior for the Update, but it's not going to work for me. I need to be able to do it by hand.
I see the following for select statements using the Server Behaviors:
mysql_select_db($database_conn, $conn);
$query_rsFind = sprintf("SELECT videoseen FROM table1 WHERE Znumber = %s", $colname_rsFindvideoseen);
I tried to do mysql_update_db($database_conn, $conn);
...but the namespace for mysql_update_db doesn't look valid
I see the following for select statements using the Server Behaviors:
mysql_select_db($database_conn, $conn);
$query_rsFind = sprintf("SELECT videoseen FROM table1 WHERE Znumber = %s", $colname_rsFindvideoseen);
I tried to do mysql_update_db($database_conn, $conn);
...but the namespace for mysql_update_db doesn't look valid