Auto Populating a Field |
9/4/2008 4:06:57 AM |
PHPRunner General questions | |
L
L4Leaner author
I am new to PHP and PHPRunner and am trying to get my head around what is no doubt a simple task. |
|
J
|
Jane 9/4/2008 |
Hi,
global $conn; if (@$_REQUEST["id"]) { $str = "select Description from General where RecordID=".$_REQUEST["id"]; $rs = db_query($str,$conn); $data = db_fetch_array($rs); $_SESSION["Description"] = $data["Description"]; }
|
L
|
L4Leaner author 9/4/2008 |
Jane..... thow art truly a goddess among women. |