valee Posted April 4, 2013 Share Posted April 4, 2013 i get the following error in my site.... Parse error: syntax error, unexpected '`', expecting T_FUNCTION help please!!! <?php final class MySQL { private $link; public function __construct($hostname, $username, $password, $database) { if (!$this->link = mysql_connect($hostname, $username, $password)) { trigger_error('Error: Could not make a database link using ' . $username . '@' . $hostname); } if (!mysql_select_db($database, $this->link)) { trigger_error('Error: Could not connect to database ' . $database); } mysql_query("SET NAMES 'utf8'", $this->link); mysql_query("SET CHARACTER SET utf8", $this->link); mysql_query("SET CHARACTER_SET_CONNECTION=utf8", $this->link); mysql_query("SET SQL_MODE = ''", $this->link); } public function query($sql) { if ($this->link) { $resource = mysql_query($sql, $this->link); if ($resource) { if (is_resource($resource)) { $i = 0; $data = array(); while ($result = mysql_fetch_assoc($resource)) { $data[$i] = $result; $i++; } mysql_free_result($resource); $query = new stdClass(); $query->row = isset($data[0]) ? $data[0] : array(); $query->rows = $data; $query->num_rows = $i; unset($data); return $query; } else { return true; } } else { trigger_error('Error: ' . mysql_error($this->link) . '<br />Error No: ' . mysql_errno($this->link) . '<br />' . $sql); exit(); } } } public function escape($value) { if ($this->link) { return mysql_real_escape_string($value, $this->link); } } public function countAffected() { if ($this->link) { return mysql_affected_rows($this->link); } } public function getLastId() { if ($this->link) { return mysql_insert_id($this->link); } } public function __destruct() { if ($this->link) { mysql_close($this->link); } } `newsletter { '( `newsletter_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(100) CHARACTER SET utf8 NOT NULL, `email` varchar(120) CHARACTER SET utf8 NOT NULL, PRIMARY KEY (`newsletter_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; } } } ?> Quote Link to comment https://forums.phpfreaks.com/topic/276528-parse-error-syntax-error-unexpected-expecting-t_function/ Share on other sites More sharing options...
Sebbo Posted April 4, 2013 Share Posted April 4, 2013 With a parse error there should normally a line be given. That might help. And you can find it even with the highlighting here. It's in front of newsletter after the function __descruct(). Quote Link to comment https://forums.phpfreaks.com/topic/276528-parse-error-syntax-error-unexpected-expecting-t_function/#findComment-1422882 Share on other sites More sharing options...
valee Posted April 4, 2013 Author Share Posted April 4, 2013 (edited) Parse error: syntax error, unexpected T_STRING, expecting T_FUNCTION in /home/liveinst/public_html/system/database/mysql.php on line 79 Edited April 4, 2013 by valee Quote Link to comment https://forums.phpfreaks.com/topic/276528-parse-error-syntax-error-unexpected-expecting-t_function/#findComment-1422884 Share on other sites More sharing options...
Technocrat Posted April 4, 2013 Share Posted April 4, 2013 It's all the `newsletter { '( `newsletter_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(100) CHARACTER SET utf8 NOT NULL, `email` varchar(120) CHARACTER SET utf8 NOT NULL, PRIMARY KEY (`newsletter_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; } I am not sure what you are doing there but that's not right Quote Link to comment https://forums.phpfreaks.com/topic/276528-parse-error-syntax-error-unexpected-expecting-t_function/#findComment-1422886 Share on other sites More sharing options...
valee Posted April 4, 2013 Author Share Posted April 4, 2013 (edited) . Edited April 4, 2013 by valee Quote Link to comment https://forums.phpfreaks.com/topic/276528-parse-error-syntax-error-unexpected-expecting-t_function/#findComment-1422893 Share on other sites More sharing options...
valee Posted April 4, 2013 Author Share Posted April 4, 2013 It's all the `newsletter { '( `newsletter_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(100) CHARACTER SET utf8 NOT NULL, `email` varchar(120) CHARACTER SET utf8 NOT NULL, PRIMARY KEY (`newsletter_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; } I am not sure what you are doing there but that's not right I've found this .sql file -- -- Create newsletter table. Don't forget add prefix for newsletter table -- CREATE TABLE IF NOT EXISTS `newsletter` ( `newsletter_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(100) CHARACTER SET utf8 NOT NULL, `email` varchar(120) CHARACTER SET utf8 NOT NULL, PRIMARY KEY (`newsletter_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; Quote Link to comment https://forums.phpfreaks.com/topic/276528-parse-error-syntax-error-unexpected-expecting-t_function/#findComment-1422894 Share on other sites More sharing options...
Maq Posted April 4, 2013 Share Posted April 4, 2013 That's what's causing your error and shouldn't be in your code, at least not like that. Quote Link to comment https://forums.phpfreaks.com/topic/276528-parse-error-syntax-error-unexpected-expecting-t_function/#findComment-1422904 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.