DataSpy Posted September 1, 2006 Share Posted September 1, 2006 Hello this is the first time I've ever used a function and was wondering if someone could please help me with a parse error.[code]<?php//<!-- mysql connection function -->function &dbconnection($host, $dbuser, $dbpass, $dbname){ if (!dbconn = @mysql_connect($host, $dbuser, $dbpass)) { <=== line 5 return false; } if (!@mysql_select_db($dbname)) { return false; } return $dbconn;}//<!-- mysql config -->$host = 'localhost';$dbuser = 'root';$dbpass = '';$dbname = 'cms';$dbconn = &dbconnection($host, $dbuser, $dbpass, $dbname);?>[/code]The error says:[quote]Parse error: parse error, unexpected '=' in C:\Program Files\xampp\htdocs\www\band\config.php on line 5[/quote]Any help would be greatly appretiated, thanx in advance! Link to comment https://forums.phpfreaks.com/topic/19379-help-with-function-parse-error/ Share on other sites More sharing options...
wildteen88 Posted September 1, 2006 Share Posted September 1, 2006 This:if (!dbconnShould be:if (![b][color=red]$[/color][/b]dbconn Link to comment https://forums.phpfreaks.com/topic/19379-help-with-function-parse-error/#findComment-84089 Share on other sites More sharing options...
DataSpy Posted September 1, 2006 Author Share Posted September 1, 2006 Thanx, sorry for such a stupid mistake, I don't use php that often :( .Thanx again :) ! Link to comment https://forums.phpfreaks.com/topic/19379-help-with-function-parse-error/#findComment-84115 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.