cdmafra Posted March 18, 2014 Share Posted March 18, 2014 Hello. I have a strange error T_String, because it was not there until I changed my server. I updated my details, but returns: Parse error: syntax error, unexpected T_STRING in /usr/home/motorra/public_html/login/db_connect_close.php on line 4 1. <?php 2. $link = mysql_connect("localhost", "USER", "PASS") 3. // Close connection 4. mysql_close($link); 5. ?> Quote Link to comment Share on other sites More sharing options...
Solution Ch0cu3r Posted March 18, 2014 Solution Share Posted March 18, 2014 You have left off the ; at the end of line 2 $link = mysql_connect("localhost", "USER", "PASS"); // <-- missing semi-colon at end of line NOTE: If you are starting to lean to use MySQL databases with PHP, then I strongly encourage you to not carry on using the standard mysql_* functions. Instead use MySQLi instead. The mysql_* function are deprecated and could so be removed completely from newer versions of PHP. Quote Link to comment Share on other sites More sharing options...
cdmafra Posted March 18, 2014 Author Share Posted March 18, 2014 I noted that meanwhile. Many thanks! You have left off the ; at the end of line 2 $link = mysql_connect("localhost", "USER", "PASS"); // <-- missing semi-colon at end of line NOTE: If you are starting to lean to use MySQL databases with PHP, then I strongly encourage you to not carry on using the standard mysql_* functions. Instead use MySQLi instead. The mysql_* function are deprecated and could so be removed completely from newer versions of PHP. Quote Link to comment 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.