[James aka CrazyRP] Need a site with these features..[James aka CrazyRP]

CrazyRP

New Member
Jan 2, 2011
11
0
I need a site with these features..If any: MYSQL internal acces, PHP compatible, has a unique name, and that's about it.. Btw, not all sites are PHP compatible and/or html compatible.. If you have a site that I can have free, contact me at [email protected] please and thank you.
 

Jonty

Active Member
Aug 7, 2010
194
65
PHP:
<?php
$con = mysql_connect("localhost","user","password");
$db = mysql_select_db("database");
// make sure to include this file on all pages that access the db

PHP:
$simple = mysql_query("SELECT * FROM news ORDER BY id DESC");
while($row = mysql_fetch_assoc($simple))
{
  echo $row['title'] . "<font size='1'><i>- posted by " . $row['author'] . ".</i></font size>";
  echo "<hr><br> " . $row['content'] . "";
}
// make the db yourself, clueless
 

Users who are viewing this thread

Top