M
|
Martijn author 11/20/2007 |
After a big search I found the option: "Insert php code snippet" |
J
|
Jane 11/20/2007 |
Martijn, global $data,$conn; $str = ""; $str = "select type from TableName where ID=".$data["ID"]; $rs = db_query($str,$conn); while ($datatmp = db_fetch_array($rs)) $str.=$datatmp["type"].","; $str = substr($str,0,strlen($str)-2); $value = $str; |