J
|
Jane 4/16/2008 |
Hi,
|
I
|
indigo author 4/18/2008 |
How do I redirect to "View Record" page of that specific record? |
I
|
indigo author 4/18/2008 |
I got this. Thanks. global $conn; $str = "select Status from 3140_Project where ProjID=".$_REQUEST["editid1"]; $rs = db_query($str,$conn); $data = db_fetch_array($rs); if ($data["Status"]=="Completed") { header("Location: 3140_Project_view.php?editid1=".$_REQUEST["editid1"]); exit(); } |
N
|
nitro23456 5/16/2009 |
Hi global $conn;
|