I created display.php to show records from a mysql database on my site but?

Britt babe xxx

New member
I don't know what to do now?

I was told that if I wanted to display records from a mysql database on my site I would have to create a file named display.php and code it which I did... but now have no idea how to get it to display on my site?

What do I put in default.html?
I don't want to link it. I want to show the records.
 
Put the following code in the default.html


<html>
<body onLoad="window.location.href='display.php'">


body text

</body>

</html>



========

or insert the following code inside the body tag of the default.html

onLoad="window.location.href='display.php'"
 
If default.html is the lading page to your site and you want to link to the display.php file just create a link to it. Here's the code to do that:

<a href="display.php">Display Database Records</a>

Put that anywhere between the body tags of your default.html file and you're all set.
 
Back
Top