phpfirst Posted June 29, 2008 Share Posted June 29, 2008 Hi all i need help with a site i am designing i need help with getting a signup page ,login page , log out page etc all working i have a sign up page and i am getting the error Parse error: syntax error, unexpected '-', expecting ')' in /home/public_html/signupck.php on line 13 line 13 function connecttodb($localhost,$database,$dbuser,$dbpassword{'; i have edited pw etc before posting here any help greatly appreciated phpfirst Link to comment https://forums.phpfreaks.com/topic/112490-help-with-login-pagesign-up-page-etc/ Share on other sites More sharing options...
jelly Posted June 29, 2008 Share Posted June 29, 2008 Connecting to MySQL: <?php $host="localhost"; $username="your_username"; $password="your_password"; $db_name="database_name"; mysql_connect("$host", "$username", "$password") or die ("cannot connect"); mysql_select_db("$db_name") or die ("cannot select database"); ?> Link to comment https://forums.phpfreaks.com/topic/112490-help-with-login-pagesign-up-page-etc/#findComment-577588 Share on other sites More sharing options...
thatsgreat2345 Posted June 29, 2008 Share Posted June 29, 2008 This is a nice simple to use login/register/user/admin script to use. scroll down and download the zip. http://www.evolt.org/article/PHP_Login_System_with_Admin_Features/17/60384/index.html Link to comment https://forums.phpfreaks.com/topic/112490-help-with-login-pagesign-up-page-etc/#findComment-577647 Share on other sites More sharing options...
MasterACE14 Posted June 30, 2008 Share Posted June 30, 2008 function connecttodb($localhost,$database,$dbuser,$dbpassword); fixed... ACE Link to comment https://forums.phpfreaks.com/topic/112490-help-with-login-pagesign-up-page-etc/#findComment-577853 Share on other sites More sharing options...
phpfirst Posted July 1, 2008 Author Share Posted July 1, 2008 do i need to run a program on my computer for the scripts to work online i am using a mysql database that is on the server where i host my site , i need to get this working as soon as possible any help greatly appreciated Php First Link to comment https://forums.phpfreaks.com/topic/112490-help-with-login-pagesign-up-page-etc/#findComment-579490 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.