Thread: Sql
View Single Post
  #17  
Old 05-28-2005, 12:39 PM
atholon is offline atholon
"ath-hole"

Join Date: Jan 2003
Location: Failville.
Posts: 11,357

Send a message via MSN to atholon
I am looking at SS site trying to use the select query and it aint working.
PHP Code:
<?
include("./config.php");
$nmi=mysql_fetch_array(mysql_query("SELECT * FROM tutorials WHERE id='1'"));
$title=htmlspecialchars(stripslashes($nmi["title"]));
$body=htmlspecialchars(stripslashes($nmi["body"]));
Echo("<b>Title:</b><br />\n");
Echo("$title<br />\n");
Echo("<b>Body:</b><br />\n");
Echo("$body<br />\n");
?>
__________________
Reply With Quote