Sangoku
Posts: 2
|
| Posted: 12/21/2004, 6:22 AM |
|
after a update, i like to complete a table with user, time and the SQL generated with CCS.
This is my Custom Code, (after execute seclect)
global $membre1;
global $mem_enc;
$current_date = date('Y-m-d H:i:s');
$sql = "INSERT INTO `qqq` (`qui` , `quand` , `quoi`) VALUES ('".ccgetuserid()."','".$current_date."', '???????')";
echo $sql;
echo $sql_up;
$result = mysql_query($sql);
What replaces the ??????
I read your advice, and take a look at http://docs.codecharge.com/studio/html/ProgrammingTechn...yingOutput.html,
And now, thank you, it works great for the select SQL, but how can i store a update and insert SQL?
I try to put the same code in the beforeexecuteinsert, and the beforeexecuteupdate, with no success.
|
 |
 |
|