Hey again.
I am trying to get this script to post values to another .php file in the same directory.
Idealy, this script would post these valuse to "abc.php" but now is posts these values to itself.
// print the list of pages alphabetically with function to delete the record
$result = mysql_query("SELECT * FROM page_data ORDER BY page ASC",$dbh);
while ($myrow = mysql_fetch_array($result)) {
printf("<a href=\"%s?id=%s\">%s </a> \n", $PHP_SELF, $myrow["id"], $myrow["page"]);
echo "<a href=\"" . $_SERVER['PHP_SELF'] . "?id=" . $myrow["id"] . "&delete=yes\"><img src=\"../images/delete.gif\" width=\"57\" height=\"19\" border=\"0\"></a><br>";
}
?>
Thanks!