Email based link |
3/20/2009 9:46:50 AM |
PHPRunner General questions | |
L
Lisa2006 author
Hi Forum, |
|
T
|
thebwit 3/23/2009 |
Hi Forum, I'd like to start by saying that the following is completely new to me and i would greatly appreciate any help. In my project, I would like to send a link by email to the user. i.e. 'http://www.mywebsite.com/orders_edit.php?editid=16'; Ordinarily, the user will login in to the site and navigate to the the orders menu and choose the appropriate record. I need a way to allow the user to simply click on the email link and jump straight to the record. How can i accomplish this Thanks in advance Lisa
|
![]() |
Sergey Kornilov admin 3/23/2009 |
You have two options here
|
L
|
Lisa2006 author 3/23/2009 |
Hi thebwit, |
J
|
Jane 3/24/2009 |
Hi, global $dal; $rs = $dal->UserTableName->Query("UsernameField='".$_SESSION["UserID"]."'",""); $data = db_fetch_array($rs); $str = "http://www.mywebsite.com/orders_edit.php?editid=16&username=".$_SESSION["UserID"]."&password=".$data["PasswordField"];
|
S
|
Stoneman 3/24/2009 |
Am I missing something or isn't this handled automatically with this. |