ÿþ<?php $Section = "Catalog"; $Headline = "Spirit Gatherings"; //*********************************************** //* Process feedback form * //*********************************************** if($_REQUEST['submit']) { $msg = '<html> <head> <STYLE TYPE="text/css"> <!-- table { width: 400; } table.Items { border: 1px solid Black; border-collapse: collapse; } td.Header { font-weight: bold; text-align: right; vertical-align: top; white-space: nowrap; } --> </STYLE> </head> <body> <table cellspacing="0" cellpadding="2" border="0"> <tr> <td class="Header"> Name: </td> <td> '.trim($_REQUEST['name']).' </td> </tr> <tr> <td class="Header"> Email: </td> <td> '.trim($_REQUEST['email']).' </td> </tr> <tr> <td class="Header"> Phone Number: </td> <td> '.trim($_REQUEST['phone']).' </td> </tr> <tr> <td class="Header"> City and State: </td> <td> '.trim($_REQUEST['location']).' </td> </tr> <tr> <td class="Header"> Type of Gathering: </td> <td> '.trim($_REQUEST['gathering']).(trim($_REQUEST['other']) != '' ? ' - '.trim($_REQUEST['other']) : '').' </td> <tr> <td class="Header"> Day/Time Gathering Preference: </td> <td> '.trim($_REQUEST['time']).(trim($_REQUEST['other']) != '' ? ' - '.trim($_REQUEST['other']) : '').' </td> </tr> <tr> <td class="Header"> Additional Comments: </td> <td> '.trim($_REQUEST['feedback']).' </td> </tr> </table> </body> </html>'; /* To send HTML mail, you can set the Content-type header. */ $headers = "MIME-Version: 1.0\r\n"; $headers .= "Content-type: text/html; charset=iso-8859-1\r\n"; /* additional headers */ $headers .= "From: kerri@spiralinsights.com <kerri@spiralinsights.com>\r\n"; $to = 'kerri@spiralinsights.com'; $subject = 'Spirit Gathering Request'; mail($to, $subject, $msg, $headers); header('location: gthankyou.php'); exit; } include("../inc_top.php"); echo' <p id="Breadcrumbs"> <a href="'.$root.'">Home</a> &#187; <a href="'.$root.'catalog/">Products &amp; Services</a> &#187; <strong>Spirit Gatherings</strong> </p> <p>Kerri is now offering spiritual group readings in your own home! Invite an intimate group of family and friends for a gathering of fun, laughter, and psychic messages from the Spirit Realm. Although commonly known as psychic parties, Kerri prefers to call them gatherings since our Guides in Spirit also attend to share their guidance.</p> <p> </p> <p>Fill out the form at the bottom of this page to more information.</p> <p> </p> <h2>Spirit Gatherings</h2> <ul> <li>Price per Guest - $20</li> <li>Approximate Length of Time for Gathering - 2 Hours</li> <li>Number of Guests (including Host/Hostess) - 8 - 10 (8 is the minimum number of guests to book a gathering)</li> <li>Group Gallery Reading - Each guest will receive a reading from Kerri in a gallery type setting. Each guest will receive a 5-7 minute reading with the opportunity to ask two questions. Kerri reads without cards and requests no prior information other than the person&#146s first name.</li> <li>Host/Hostess is always FREE</li> <li>Door Prize - Kerri will provide a metapysically themed door prize for your gathering for no extra charge.</li> <li>Kerri will give a short talk and answer questions about the Spiritual and Paranormal Realm.</li> </ul> <p> </p> <h2>Angel Gatherings</h2> <ul> <li>Price per Guest - $20</li> <li>Approximate Length of Time for Gathering - 2 Hours</li> <li>Number of Guests (including Host/Hostess) - 8 - 10 (8 is the minimum number of guests to book a gathering)</li> <li>Group Gallery Reading - Each guest will receive a reading from Kerri in a gallery type setting. Each guest will receive a 5-7 minute reading with the opportunity to ask two questions. Kerri reads from several different types of Angel Oracle Cards while also tapping into the Angelic Realm.</li> <li>Host/Hostess is always FREE</li> <li>Door Prize - Kerri will provide a metapysically themed door prize for your gathering for no extra charge.</li> <li>Kerri will give a short talk and answer questions about the Angelic Realm.</li> </ul> <p> </p> <h2>Psychic Gatherings</h2> <ul> <li>Price per Guest - $25</li> <li>Approximate Length of Time for Gathering - 2-3 Hours</li> <li>Number of Guests (including Host/Hostess) - 5 - 10 (5 is the minimum number of guests to book a gathering)</li> <li>Private Reading - Each guest will receive a private 15 minute reading. Kerri reads without cards and requests no prior information other than the person&#146s first name. Guests may also ask questions within the time allotted.</li> <li>Host/Hostess is always FREE</li> </ul> <p> </p> <p>Please note: Any gathering over 50 miles one way will incur a 50 cent a mile charge. <p> </p> <p>Please fill out form to request more information.</p> <form method="post" action="/catalog/Gatherings.php"> <form method="post" action="'.$PHP_SELF.'"> <table cellspacing="0" id="SendFeedback"> <tr> <td class="Label"> Name: </td> <td class="Field"> <input type="text" name="name" maxlength="50" value="" /> </td> </tr> <tr> <td class="Label"> Email: </td> <td class="Field"> <input type="text" name="email" maxlength="100" value="" /> </td> </tr> <tr> <td class="Label"> Phone Number: </td> <td class="Field"> <input type="text" name="phone" maxlength="100" value="" /> </td> </tr> <tr> <td class="Label"> City and State: </td> <td class="Field"> <input type="text" name="location" maxlength="100" value="" /> </td> </tr> <tr> <tr> <td class="Label"> Type of Gathering: </td> <td class="Field"> <select name="gathering"> <option value="">-- Select --</option> <option value="Spirit Gathering">Spirit Gathering</option> <option value="Angel Gathering">Angel Gathering</option> <option value="Psychic Gathering">Psychic Gathering</option> </select> </td> </tr> <td class="Label"> Day/Time Gathering Preference: </td> <td class="Field"> <select name="time"> <option value="">-- Select --</option> <option value="Friday Evening">Friday Evening</option> <option value="Saturday Morning">Saturday Morning</option> <option value="Saturday Afternoon">Saturday Afternoon</option> <option value="Saturday Evening">Saturday Evening</option> <option value="Sunday Morning">Sunday Morning</option> <option value="Sunday Afternoon">Sunday Afternoon</option> <option value="Sunday Evening">Sunday Evening</option> </select> </td> </tr> <tr> <td class="Label"> Additional Comments: </td> <td class="Field"> <textarea name="feedback" rows="10" cols="40"></textarea> </td> </tr> <tr> <td> &nbsp; </td> <td> <input type="submit" name="submit" value="Submit" /> </td> </tr> </table> </form> '; include("../inc_bottom.php"); ?>cc