
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");
?>