Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Trending News
How long before setting up a byet sql database can I access it through a html page?
<HTML>
<HEAD>
<TABLE WIDTH="100%">
<TR><TD WIDTH="10%"></TD><TD>
<TITLE>
php test page
</TITLE>
</HEAD>
<center><br>
<B><font size="6">php test page</B></center>
</FONT>
<?php
$link = mysql_connect(sql111.byethost55.com, z4444, password);
if (!$link) {
die('Could not connect: ' . mysql_error());
}
echo 'Connected successfully';
?>
<?php
phpinfo();
?>
</font>
</TD><TD WIDTH="10%"></TD></TR>
</TABLE>
</Center>
</BODY>
</HTML>
The database is set up but the html page above just shows the name of the page.