|
C
|
cgphp 12/4/2011 |
|
In the "Edit page: Before process" event of the master table (tbl1), enter this code: $_SESSION['current_record'] = $_GET['editid1'];
$rs = CustomQuery("SELECT date FROM tbl1 WHERE id=".$_SESSION['current_record']." LIMIT 1");
unset($_SESSION['current_record']); |
|
|
G
|
giorgiots author 12/4/2011 |
|
I see what you're doing! |
|