Lookup Wizard and Email data |
7/21/2009 05:40:29 | |
| PHPRunner General questions | ||
|
M
mauro author
I have this problem....when user edit records an e-mail is sent. |
||
|
J
|
Jane 7/21/2009 |
|
Hi, global $dal; $rs = $dal->name->Query("email='".$values["tipologiaproblema"]."'",""); if ($data = db_fetch_array($rs)) $name = $data["name"]; |
|
|
M
|
mauro author 7/21/2009 |
Hi, you can select name from name table in your event manually. Here is a sample:
|
|
|
J
|
Jane 7/22/2009 |
|
Hi, global $dal; $rs = $dal->name->Query("email='".$values["tipologiaproblema"]."'",""); if ($data = db_fetch_array($rs)) $name = $data["name"]; $msg = "Tipologia Problema :".$name; |
|