garydt Posted June 2, 2011 Share Posted June 2, 2011 Hi, I've uploaded my website to the server and I'm getting this error:- Parse error: syntax error, unexpected T_VARIABLE in /home/c/h/chichesterag/public_html/Connections/gary.php on line 9 This is the first 9 lines of code:- <?php session_start(); ?> <?php require_once('Connections/gary.php'); ?> <?php ini_set ("display_errors", "1"); error_reporting(E_ALL); $gary = mysql_connect("localhost", "root") or die("Error connecting to database<br /><br />".mysql_error()); mysql_select_db("people") or die("Error selecting database<br /><br />".mysql_error()); This is my connecting code:- <?php # FileName="Connection_php_mysql.htm" # Type="MYSQL" # HTTP="true" $hostname_gary = "localhost"; $database_gary = "chichesterag"; $username_gary = "chichesterag"; $password_gary = "xxxxxx"; $gary = mysql_pconnect($hostname_localhost, $username_chichesterag, $password_xxxxxx) or trigger_error(mysql_error(),E_USER_ERROR); ?> The server's owner doesn't know what the problem is so I'm hoping someone here can help. Thanks, Gary Link to comment https://forums.phpfreaks.com/topic/238183-database-error/ Share on other sites More sharing options...
revraz Posted June 2, 2011 Share Posted June 2, 2011 Which one is gary.php? Link to comment https://forums.phpfreaks.com/topic/238183-database-error/#findComment-1223961 Share on other sites More sharing options...
garydt Posted June 2, 2011 Author Share Posted June 2, 2011 gary.php is the second piece of code. Link to comment https://forums.phpfreaks.com/topic/238183-database-error/#findComment-1223965 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.