<HTML><BODY style="word-wrap: break-word; -khtml-nbsp-mode: space; -khtml-line-break: after-white-space; "><BR><DIV><DIV>On Oct 17, 2006, at 6:28 AM, Mike wrote:</DIV><BR class="Apple-interchange-newline"><BLOCKQUOTE type="cite"><P style="margin: 0.0px 0.0px 0.0px 0.0px"><FONT face="Comic Sans MS" size="3" style="font: 12.0px Comic Sans MS">econd, just out of curiosity and since I couldn't find that as well -</FONT></P> <P style="margin: 0.0px 0.0px 0.0px 0.0px"><FONT face="Comic Sans MS" size="3" style="font: 12.0px Comic Sans MS">what exactly is the purpose of the "@"-sign in the code above? To</FONT></P> <P style="margin: 0.0px 0.0px 0.0px 0.0px"><FONT face="Comic Sans MS" size="3" style="font: 12.0px Comic Sans MS">reference the array?</FONT></P> </BLOCKQUOTE></DIV><BR><DIV>Error suppression.</DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV>If it doesn't find $_GET defined, it won't scream about it.  It will just skip the statement without output to the browser.</DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV>You can also probably:</DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV>if ($action == "rss"){</DIV><DIV style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><SPAN class="Apple-tab-span" style="white-space:pre">        </SPAN>if (@$_GET['authpw']) $_POST['authpw'] = $_GET['authpw'];</DIV><DIV style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><SPAN class="Apple-tab-span" style="white-space:pre">        </SPAN>if (@$_GET['authid']) $_POST['authid'] = $_GET['authid'];</DIV><DIV style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><SPAN class="Apple-tab-span" style="white-space:pre">        </SPAN>include_once('path/to/your/rss/choice.php');</DIV><DIV>}</DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV>Note you have to redefine the data before calling the rss feed.</DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV>Crisses</DIV></BODY></HTML>