<?php if (isset($_GET['query1'])) {echo $_GET['query1'];} if (isset($_GET['query2'])) {echo $_GET['query2'];} if (isset($_GET['widgit'])) {echo $_GET['widgit'];} ?>
Always check to see if something isset() otherwise you'll spawn errors...and if you expect something and it does not exist it can throw a wrench in your gears so-to-speak.