I have developed a page using Adobe GoLive6. I used the program the layout the page and then added some PHP code to it. I have tested it on my localhost and looks great. Now when I upload it to the ISP it doesn't like it. Something with the GoLive part. People have said to connect to the database directly. That's where I'm lost at. I haven't a clue as to how to do this as I have let GoLive do most of my work for me and not familiar with how to manually create a PHP page. Here is the code that I have to connect to my database to generate my queries. Can some one look it over and guide me on how to convert it to connect directly? Many thanks are in order if you can help me out.
<?php require_once("config/include/utils.runtime6.php") ?>
<?php require_once("config/include/mysql.runtime6.php") ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
<meta name="generator" content="Adobe GoLive 6">
<title>Welcome to Adobe GoLive 6</title>
<?php // GoLive Content Source
$MemberList = WrapMySQLDatabaseResults("TheSportsLair", "select * from rccinfo order by screenname", "block=3","MemberList");
?>
<?php // GoLive Content Source
$MemberInfo = WrapMySQLDatabaseResults("TheSportsLair", "select * from rccinfo where screenname = '" . pageParameter("name","-1") . "'", "block=1","MemberInfo");
?>
<?php // GoLive Content Source
$MemberRides = WrapMySQLDatabaseResults("TheSportsLair", "select * from rccrides where screenname = '" . pageParameter("name","-1") . "'", "block=1","MemberRides");
?>
<?php // GoLive Content Source
$MemberMaps = WrapMySQLDatabaseResults("TheSportsLair", "select maploc from rccinfo where screenname = '" . pageParameter("name","-1") . "'", "block=1","MemberMaps");
?>