include "../../config.php"; ?>
Full featured example
$id = $_GET['id']; $ath = mysql_query("select * from pages where id = '$id'"); if($ath) { while($author = mysql_fetch_array($ath)) { echo " ".$author['p_text']." "; } } else { echo "
Error: ".mysql_error()."
"; exit(); } ?>