Jump to content

Help with function parse error


DataSpy

Recommended Posts

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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.