This is really driving me nuts.
I use the following code to echo the values you suggested
<?php echo $_GET['recordID']; ?><?php echo $row_rsContent_Update['id']; ?>
And When accessing rows with an ID of less than 5, i get as expected, 2 copies of the same number....great.
As soon as the row number is greater than 6, the page displays blank! No code at all. All of the source is gone.
All that remains of the page is
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=windows-1252"></HEAD>
<BODY></BODY></HTML>
What the heck could be allowing the code to load normally as long as recordID variable is less than 7 but not be processed if greater than 7.