L
|
lawfour author 11/21/2006 |
Ok, maybe I asked the wrong question. How do I automatically fill a form with the information given when registered. |
J
|
Jane 11/21/2006 |
Larry, |
L
|
lawfour author 11/21/2006 |
Thanks,
|
J
|
Jane 11/21/2006 |
Larry, |
L
|
lawfour author 11/21/2006 |
The code I put in all of the fields is this @$_SESSION["OwnerID"] with that code all the fields populated with the currect information. But when it is submitted some of the information does not show up on the details page and only the name is filled in on all of the fields when I email. |
J
|
Jane 11/22/2006 |
Larry, |
L
|
lawfour author 11/22/2006 |
Thanks so much I will do that. Here is link to exactly what I am trying to do http://www.jci.tju.edu/~lwilliam/demo.html This was created for my old DB |
L
|
lawfour author 11/23/2006 |
I was hoping to use |
J
|
Jane 11/24/2006 |
Larry, function AfterSuccessfulRegistration() { global $conn; $str = "update TableName set Field1=Value1, Field2=Value2 where FieldName='".$_SESSION["UserID"]."'"; db_exec($strSQLInsert,$conn); }
|
L
|
lawfour author 11/26/2006 |
OK this code did not work. I was hoping to use function AfterSuccessfulRegistration() { //** Insert data into users fields only **** global $conn; but don't know what code to use to put the data in the fields. L |
![]() |
Alexey admin 11/27/2006 |
Larry, @$_SESSION["Investigator"]
@$_SESSION["Room"]
global $data; $_SESSION["Investigator"] = $data["Investigator"]; $_SESSION["Room"] = $data["Room"]; ...
|
L
|
lawfour author 11/27/2006 |
<img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=13239&image=1&table=forumreplies' class='bbc_emoticon' alt=':D' /> THANK YOU, THANK YOU, THANK YOU, |