L
|
larsonsc 5/2/2007 |
I would guess you could just add another $message .= line and call the SESSION for user ID. I've never done this mind you, but it's what I would start with. |
R
|
rcurtin author 5/2/2007 |
I tried adding the {$username} in the message text but the code only comes through. I am not sure what you mean by calling the session for the user ID? |
L
|
larsonsc 5/2/2007 |
Sorry, I see that in my response I skipped the word variable after session. Try the following and see if it works for you: |
|
jwoker 5/4/2007 |
That will get you there id number and you will probably need something like this to get their name: $strSQLselect = "select name from users where id = '".$_SESSION["UserID"]."'"; |