immortal20
October 5th, 2004, 03:07 PM
I have a html file (using phpnuke themes by the way) that has a login block. I need to know how i can get that form to work with php so users can login with it.
|
Click to See Complete Forum and Search --> : Php in html question... immortal20 October 5th, 2004, 03:07 PM I have a html file (using phpnuke themes by the way) that has a login block. I need to know how i can get that form to work with php so users can login with it. khp October 5th, 2004, 08:20 PM I have a html file (using phpnuke themes by the way) that has a login block. I need to know how i can get that form to work with php so users can login with it. The action attribute in the form in the html file has to point at the php script. Then in PHP, the form field values can be read by putting the following line in your php scriptimport_request_variables('gp','r_'); after which the form field values can be found in variables named $r_FieldName. You need to check you html file to see what the field names are on the login form. codeguru.com
Copyright Internet.com Inc., All Rights Reserved. |