Harlequin wrote:
I have a user registration form that asks new users to register. However, Do
I post the MySQLconnection string in the page they are completing or in the
later page that the data is posted to, or both...?


Not sure I follow what you're asking, but you only need to open a connection to the MySQL server when you want to run queries (select, insert, update, etc.) against it. If the page with the form on it doesn't need any mysql data for other parts of the page, then you don't have to open it there. If you plan on putting the form results into a db after the user posts it, then you need a connection on that page.


--
John C. Nichel
KegWorks.com
716.856.9675
[EMAIL PROTECTED]

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to