Hosting

FWrestling.com hosting returns with the classic FREE option, as well a paid option that gives you access to more features (and helps support the site maintenance bills that run upwards of $1500 per year!)

 

If you’d like to sign up for either Free or Premium hosting, simply access the order form here: Order Form and More Information

 

If you’ve already signed up, you can access the client portal by logging in on the left.

 


 

ANNOUNCEMENTS

[insert_php]
$FileLocation = “/hosting/includes/functions.php”;
$FileLocation = “/hosting/dbconnect.php”;
include($_SERVER[‘DOCUMENT_ROOT’].$FileLocation);
include($_SERVER[‘DOCUMENT_ROOT’].$FileLocation2);

$query = “SELECT * FROM tblannouncements WHERE published=’on’ ORDER BY date DESC LIMIT 0,3”;
$result = mysql_query($query);
while ($data = mysql_fetch_array($result)) {
$id = $data[“id”];
$date = $data[“date”];
$title = $data[“title”];
$announcement = $data[“announcement”];
$date = fromMySQLDate($date);
echo ‘

‘.$date.’‘.$title.’
‘.$announcement.’

‘;
}
[/insert_php]