hi,
well, i'm confused with what you wanted. are you asking for a <i>Query</i> statement for displaying your "stored text"?
anyway, here's a sample code for you:
if(<i>$page</i> == "1") {
<i>$result</i> = mysql_query("SELECT <i>field1</i>, <i>field2</i>, <i>storedtext</i> FROM <i>certainTable</i> WHERE <i>IDNum</i> = <i>$yourIDnum</i>") or die ("Could not BROWSE Table of Database");
list (<i>$field1</i>, <i>$field2</i>, <i>$storedtext</i>) = mysql_fetch_row (<i>$result</i>);
echo <i>$storedtext</i>;
}
🙂