Hi, Im New To PHP Coding And I Decided To Create A PHP Forum (ALago Logo Forums). I Did The "Register.html"File Then A “index.php” File. The Register.html File Worked Fine But When I Come To The Index I Get The Code On The Screen. Heres The Code:
[php]<?php
/*
/Copyright Alago Logo Forums (ALF)
/
/
/Licence http://alagologo.jimdo.com/licence/
/
/
/Offical Website http://alagologo.jimdo.com/
/
/
/
/Offical Forum http://alagoforumstestingwebsite.twomini.com/index.php
/
*/
// Now We Need To Put The Style Into Order
//Next We Need To Connect To A Database
$username = “u404949692_";
$password = "***”;
$hostname = “mysql.**********.com”;
//connection to the database
$dbhandle = mysql_connect($hostname, $username, $password)
or die(“Unable to connect to MySQL”);
// Next We Need To Create A Copyright For Our Forum Usage
echo “Powered By Alago Logo Forums (ALF)”;
// Thats All For Now
?>[/php]
Help PLZ