Parse error: syntax error, unexpected T_STRING in /home/content/r/4/n/r4nk3d/html/index.php on line 70I have that error with this script:
<?php
if(!isset($_GET['pg']))
{
//This is line 70 echo("The website is still under construction so please bare with us on what works correctly and what doesn't so far. If you would like to contact us please use the <a href="contact.php">Contact Us</a> link and fill the form out and we will get back to you as soon as possible. If you would like to contact a specific person you can go to the <a href="staff.php">Staff Page</a> and click their profile and look for their e-mail address on the page. We will be updating this site regularly so check back for updates!");
}
else if(file_exists("pages/".$_GET['pg'].".php"))
{
echo file_get_contents("pages/".$_GET['pg']".php");
}
else
{
echo file_get_contents("pages/missing.php");
}
?>I have no idea whats wrong, it looks correct to me. Please help.