if( isset( $_GET['pid'] )) {
$pid = $_GET['pid'];
if( $pid != $_SESSION['pid'] ) unset( $_SESSION['cid'] );
$_SESSION['pid'] = $pid;
}
elseif( isset( $_SESSION['pid'] )) {
$pid = $_SESSION['pid'];
}
if( isset( $_GET['cid'] )) {
$cid = $_GET['cid'];
$_SESSION['cid'] = $cid;
}
elseif( isset( $_SESSION['table'] )) {
$table = $_SESSION['table'];
}
| Subject | Written By | Posted |
|---|---|---|
| Passing dropdown list value to another SELECT statement on same page | Jack Berberette | 08/01/2012 07:20AM |
| Re: Passing dropdown list value to another SELECT statement on same page | Peter Brawley | 08/01/2012 10:25AM |
| Re: Passing dropdown list value to another SELECT statement on same page | Jack Berberette | 08/01/2012 02:19PM |
| Re: Passing dropdown list value to another SELECT statement on same page | Peter Brawley | 08/02/2012 02:38PM |
| Re: Passing dropdown list value to another SELECT statement on same page | Jack Berberette | 08/03/2012 06:15AM |
| Re: Passing dropdown list value to another SELECT statement on same page | Peter Brawley | 08/03/2012 08:22AM |
| Re: Passing dropdown list value to another SELECT statement on same page | Jack Berberette | 08/03/2012 08:34AM |
| Re: Passing dropdown list value to another SELECT statement on same page | Jack Berberette | 08/03/2012 08:42AM |
| Re: Passing dropdown list value to another SELECT statement on same page | laptop alias | 08/03/2012 05:18PM |
Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.