20 year Interest Rate Information
Return to Article Listings
$connection = mysql_connect("localhost","root","tenthhouse") or die (mysql_error());;
$db = mysql_select_db("20yr", $connection) or die (mysql_error());;
$sql = "SELECT * FROM content WHERE id='$id' ";
$sql_result = mysql_query($sql, $connection) or die (mysql_error());;
while ($row = mysql_fetch_array($sql_result)) {
$id = $row["id"];
$title = $row["title"];
$author = $row["author"];
$text = $row["text"];
$text = str_replace("","
",$text);
echo "
$text
|
";
}
?>
|
|