error message in form
- olm75
- Proficient


- Joined: Aug 07, 2005
- Posts: 293
- Status: Offline
ok i'm getting an error message:
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home2/nightsp/public_html/testcode.php on line 38
Sorry, No Records Were Found!
Warning: mysql_free_result(): supplied argument is not a valid MySQL result resource in /home2/nightsp/public_html/testcode.php on line 46
and here is the code can you read the notes i put in please thanks, i greatly appreciate this:
by the way $AG = $_POST[agegroup], $VT = $_POST[venuetype]
$MT = $_POST[musictype]; are list boxes as u can see on the page nightspotz.com
<?php
$VN = $_POST[venuename];
$AC = $_POST[areacode];
$AG = $_POST[agegroup];
//-----HOW DO I ADD THESE TO VARIBLES TO THE QUERY FROM MY SEARCH FORM---------
$VT = $_POST[venuetype];
$MT = $_POST[musictype];
//-----------------------------------------------------
$HostID = $_POST[localhost];
$UserID = $_POST[*******];
$PassID = $_POST[*******];
$dbname = $_POST[********];
$Table = $_POST[venues];
//----------CAN I TAKE THIS TABLE OUT OR WAS THIS JUST TO ECHO AND SEE IF IT WORKS..I DONT NEED ANY OF
//---THESE TABLES I'LL FORMAT IT IN DREAMWEAVER BUT CAN U SHOW ME HOW TO JUST GET THE RESULTS WITH THE
//----PHP ICON SO I CAN JUST POSITION THEM IN DREAMWEAVER...THANKS...
echo "<TABLE BORDER=1 align=center>";
echo "<TD>First Name</TD><TD>Last Name</TD><TD>Street Address</TD><TD>City</TD><TD>State</TD><TR>";
echo "<td>".$VN."</td><td>".$AC."</td><td>".$AG."</td>";
echo "<td>".$City."</td><td>".$State."</td>";
echo "</TR></table><p>";
//---------------------------------------------------------------------------------------------
mysql_select_db ($dbname);
$mysql_mylink = mysql_pconnect($HostID, $UserID, $PassID);
echo "<TABLE class='sortable' id='Identify' BORDER=1 align=center>";
echo "<TD>VENUENAME</TD><TD>AREACODE</TD><TD>Street Address</TD><TD>city</TD><TD>state</TD>";
$querystring = "select * from '$Table'";
if ($VN != "" && $AC != "" && $AG != "") {$querystring = $guerystring + "where (venuename like '%$VN%') and (areacode like '%$AC%') and (agegroup like '%$AG%')";}
if ($VN != "" && $AC != "" && $AG == "") {$querystring = $guerystring + "where (venuename like '%$VN%') and (areacode like '%$AC%')";}
if ($VN != "" && $AC == "" && $AG == "") {$querystring = $guerystring + "where (venuename like '%$VN%')";}
if ($VN != "" && $AC == "" && $AG != "") {$querystring = $guerystring + "where (venuename like '%$VN%') and (agegroup like '%$AG%')";}
$SearchMatch = mysql_query ($querystring);
if ($MatchRecordRow = mysql_fetch_array($SearchMatch)) {
do{
echo "<TR><td>".$MatchRecordRow['venuename']."</TD>";
echo "<td>".$MatchRecordRow['areacode']."</TD><td>".$MatchRecordRow['agegroup']."</TD>";
echo "<td>".$MatchRecordRow['city']."</TD><td>".$MatchRecordRow['state']."</TD>";
} while($MatchRecordRow = mysql_fetch_array($SearchMatch));
} else {echo "<center>Sorry, No Records Were Found!</center>";}
echo "</table>";
mysql_free_result($SearchMatch);
?>
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home2/nightsp/public_html/testcode.php on line 38
Sorry, No Records Were Found!
Warning: mysql_free_result(): supplied argument is not a valid MySQL result resource in /home2/nightsp/public_html/testcode.php on line 46
and here is the code can you read the notes i put in please thanks, i greatly appreciate this:
by the way $AG = $_POST[agegroup], $VT = $_POST[venuetype]
$MT = $_POST[musictype]; are list boxes as u can see on the page nightspotz.com
<?php
$VN = $_POST[venuename];
$AC = $_POST[areacode];
$AG = $_POST[agegroup];
//-----HOW DO I ADD THESE TO VARIBLES TO THE QUERY FROM MY SEARCH FORM---------
$VT = $_POST[venuetype];
$MT = $_POST[musictype];
//-----------------------------------------------------
$HostID = $_POST[localhost];
$UserID = $_POST[*******];
$PassID = $_POST[*******];
$dbname = $_POST[********];
$Table = $_POST[venues];
//----------CAN I TAKE THIS TABLE OUT OR WAS THIS JUST TO ECHO AND SEE IF IT WORKS..I DONT NEED ANY OF
//---THESE TABLES I'LL FORMAT IT IN DREAMWEAVER BUT CAN U SHOW ME HOW TO JUST GET THE RESULTS WITH THE
//----PHP ICON SO I CAN JUST POSITION THEM IN DREAMWEAVER...THANKS...
echo "<TABLE BORDER=1 align=center>";
echo "<TD>First Name</TD><TD>Last Name</TD><TD>Street Address</TD><TD>City</TD><TD>State</TD><TR>";
echo "<td>".$VN."</td><td>".$AC."</td><td>".$AG."</td>";
echo "<td>".$City."</td><td>".$State."</td>";
echo "</TR></table><p>";
//---------------------------------------------------------------------------------------------
mysql_select_db ($dbname);
$mysql_mylink = mysql_pconnect($HostID, $UserID, $PassID);
echo "<TABLE class='sortable' id='Identify' BORDER=1 align=center>";
echo "<TD>VENUENAME</TD><TD>AREACODE</TD><TD>Street Address</TD><TD>city</TD><TD>state</TD>";
$querystring = "select * from '$Table'";
if ($VN != "" && $AC != "" && $AG != "") {$querystring = $guerystring + "where (venuename like '%$VN%') and (areacode like '%$AC%') and (agegroup like '%$AG%')";}
if ($VN != "" && $AC != "" && $AG == "") {$querystring = $guerystring + "where (venuename like '%$VN%') and (areacode like '%$AC%')";}
if ($VN != "" && $AC == "" && $AG == "") {$querystring = $guerystring + "where (venuename like '%$VN%')";}
if ($VN != "" && $AC == "" && $AG != "") {$querystring = $guerystring + "where (venuename like '%$VN%') and (agegroup like '%$AG%')";}
$SearchMatch = mysql_query ($querystring);
if ($MatchRecordRow = mysql_fetch_array($SearchMatch)) {
do{
echo "<TR><td>".$MatchRecordRow['venuename']."</TD>";
echo "<td>".$MatchRecordRow['areacode']."</TD><td>".$MatchRecordRow['agegroup']."</TD>";
echo "<td>".$MatchRecordRow['city']."</TD><td>".$MatchRecordRow['state']."</TD>";
} while($MatchRecordRow = mysql_fetch_array($SearchMatch));
} else {echo "<center>Sorry, No Records Were Found!</center>";}
echo "</table>";
mysql_free_result($SearchMatch);
?>
- <?php
- $VN = $_POST[venuename];
- $AC = $_POST[areacode];
- $AG = $_POST[agegroup];
- //-----HOW DO I ADD THESE TO VARIBLES TO THE QUERY FROM MY SEARCH FORM---------
- $VT = $_POST[venuetype];
- $MT = $_POST[musictype];
- //-----------------------------------------------------
- $HostID = $_POST[localhost];
- $UserID = $_POST[*******];
- $PassID = $_POST[*******];
- $dbname = $_POST[********];
- $Table = $_POST[venues];
- //----------CAN I TAKE THIS TABLE OUT OR WAS THIS JUST TO ECHO AND SEE IF IT WORKS..I DONT NEED ANY OF
- //---THESE TABLES I'LL FORMAT IT IN DREAMWEAVER BUT CAN U SHOW ME HOW TO JUST GET THE RESULTS WITH THE
- //----PHP ICON SO I CAN JUST POSITION THEM IN DREAMWEAVER...THANKS...
- echo "<TABLE BORDER=1 align=center>";
- echo "<TD>First Name</TD><TD>Last Name</TD><TD>Street Address</TD><TD>City</TD><TD>State</TD><TR>";
- echo "<td>".$VN."</td><td>".$AC."</td><td>".$AG."</td>";
- echo "<td>".$City."</td><td>".$State."</td>";
- echo "</TR></table><p>";
- //---------------------------------------------------------------------------------------------
- mysql_select_db ($dbname);
- $mysql_mylink = mysql_pconnect($HostID, $UserID, $PassID);
- echo "<TABLE class='sortable' id='Identify' BORDER=1 align=center>";
- echo "<TD>VENUENAME</TD><TD>AREACODE</TD><TD>Street Address</TD><TD>city</TD><TD>state</TD>";
- $querystring = "select * from '$Table'";
- if ($VN != "" && $AC != "" && $AG != "") {$querystring = $guerystring + "where (venuename like '%$VN%') and (areacode like '%$AC%') and (agegroup like '%$AG%')";}
- if ($VN != "" && $AC != "" && $AG == "") {$querystring = $guerystring + "where (venuename like '%$VN%') and (areacode like '%$AC%')";}
- if ($VN != "" && $AC == "" && $AG == "") {$querystring = $guerystring + "where (venuename like '%$VN%')";}
- if ($VN != "" && $AC == "" && $AG != "") {$querystring = $guerystring + "where (venuename like '%$VN%') and (agegroup like '%$AG%')";}
- $SearchMatch = mysql_query ($querystring);
- if ($MatchRecordRow = mysql_fetch_array($SearchMatch)) {
- do{
- echo "<TR><td>".$MatchRecordRow['venuename']."</TD>";
- echo "<td>".$MatchRecordRow['areacode']."</TD><td>".$MatchRecordRow['agegroup']."</TD>";
- echo "<td>".$MatchRecordRow['city']."</TD><td>".$MatchRecordRow['state']."</TD>";
- } while($MatchRecordRow = mysql_fetch_array($SearchMatch));
- } else {echo "<center>Sorry, No Records Were Found!</center>";}
- echo "</table>";
- mysql_free_result($SearchMatch);
- ?>
- Anonymous
- Bot


- Joined: 25 Feb 2008
- Posts: ?
- Loc: Ozzuland
- Status: Online
August 8th, 2005, 9:18 pm
Hi i think that problems come with where clause in your source:
Try to change code to "where" clause with this one:
//old source
if ($VN != "" && $AC != "" && $AG != "") {$querystring = $guerystring + "where (venuename like '%$VN%') and (areacode like '%$AC%') and (agegroup like '%$AG%')";}
if ($VN != "" && $AC != "" && $AG == "") {$querystring = $guerystring + "where (venuename like '%$VN%') and (areacode like '%$AC%')";}
if ($VN != "" && $AC == "" && $AG == "") {$querystring = $guerystring + "where (venuename like '%$VN%')";}
if ($VN != "" && $AC == "" && $AG != "") {$querystring = $guerystring + "where (venuename like '%$VN%') and (agegroup like '%$AG%')";}
//new source
if ($VN !="") {$querystring = $guerystring + "where (venuename like '%$VN%') ";}
if ($AC !="") {$querystring = $guerystring + "and (areacode like '%$AC%') ";}
if ($AG!="") {$querystring = $guerystring + "and (agegroup like '%$AG%')";}
Try to change code to "where" clause with this one:
//old source
if ($VN != "" && $AC != "" && $AG != "") {$querystring = $guerystring + "where (venuename like '%$VN%') and (areacode like '%$AC%') and (agegroup like '%$AG%')";}
if ($VN != "" && $AC != "" && $AG == "") {$querystring = $guerystring + "where (venuename like '%$VN%') and (areacode like '%$AC%')";}
if ($VN != "" && $AC == "" && $AG == "") {$querystring = $guerystring + "where (venuename like '%$VN%')";}
if ($VN != "" && $AC == "" && $AG != "") {$querystring = $guerystring + "where (venuename like '%$VN%') and (agegroup like '%$AG%')";}
//new source
if ($VN !="") {$querystring = $guerystring + "where (venuename like '%$VN%') ";}
if ($AC !="") {$querystring = $guerystring + "and (areacode like '%$AC%') ";}
if ($AG!="") {$querystring = $guerystring + "and (agegroup like '%$AG%')";}
- olm75
- Proficient


- Joined: Aug 07, 2005
- Posts: 293
- Status: Offline
Replace the single quotes (') surrounding the table name in the $querystring variable with slanted quotes (` - sorry, I don't know their proper name
), i.e.:
Should become:
Only string literals should be enclosed by single quotes. Database names, table names and column names should all be enclosed by slanted quote marks.
$querystring = "select * from '$Table'";
Should become:
$querystring = "select * from `$Table`";
Only string literals should be enclosed by single quotes. Database names, table names and column names should all be enclosed by slanted quote marks.
Why do geeks get Halloween and Christmas confused?
Because 31 Oct == 25 Dec
www.darren-king.co.uk
Because 31 Oct == 25 Dec
www.darren-king.co.uk
- olm75
- Proficient


- Joined: Aug 07, 2005
- Posts: 293
- Status: Offline
iight this is the new code:
still does the same did anyone actually test the code first....
<?php
$VN = $_POST[venuename];
$AC = $_POST[areacode];
$AG = $_POST[agegroup];
//-----HOW DO I ADD THESE TO VARIBLES TO THE QUERY FROM MY SEARCH FORM---------
$VT = $_POST[venuetype];
$MT = $_POST[musictype];
//-----------------------------------------------------
$mysql_mylink = mysql_pconnect(localhost, nightsp, babystuff) or die(mysql_error());
mysql_select_db (nightsp_nightspotz) or die(mysql_error());
echo "<TABLE class='sortable' id='Identify' BORDER=1 align=center>";
echo "<TD>VENUENAME</TD><TD>AREACODE</TD><TD>AGE GROUP</TD><TD>CITY</TD><TD>STATE</TD>";
$querystring = "select * from venues";
if ($VN !="") {$querystring = $guerystring + "where (venuename like '%$VN%') ";}
if ($AC !="") {$querystring = $guerystring + "and (areacode like '%$AC%') ";}
if ($AG!="") {$querystring = $guerystring + "and (agegroup like '%$AG%')";}
$SearchMatch = mysql_query ($querystring, $mysql_mylink) or die(mysql_error());
if ($MatchRecordRow = mysql_fetch_array($SearchMatch)) {
do{
echo "<TR><td>".$MatchRecordRow['venuename']."</TD>";
echo "<td>".$MatchRecordRow['areacode']."</TD><td>".$MatchRecordRow['agegroup']."</TD>";
echo "<td>".$MatchRecordRow['city']."</TD><td>".$MatchRecordRow['state']."</TD>";
} while($MatchRecordRow = mysql_fetch_array($SearchMatch));
} else {echo "<center>Sorry, No Records Were Found!</center>";}
echo "</table>";
mysql_free_result($SearchMatch);
?>
still does the same did anyone actually test the code first....
<?php
$VN = $_POST[venuename];
$AC = $_POST[areacode];
$AG = $_POST[agegroup];
//-----HOW DO I ADD THESE TO VARIBLES TO THE QUERY FROM MY SEARCH FORM---------
$VT = $_POST[venuetype];
$MT = $_POST[musictype];
//-----------------------------------------------------
$mysql_mylink = mysql_pconnect(localhost, nightsp, babystuff) or die(mysql_error());
mysql_select_db (nightsp_nightspotz) or die(mysql_error());
echo "<TABLE class='sortable' id='Identify' BORDER=1 align=center>";
echo "<TD>VENUENAME</TD><TD>AREACODE</TD><TD>AGE GROUP</TD><TD>CITY</TD><TD>STATE</TD>";
$querystring = "select * from venues";
if ($VN !="") {$querystring = $guerystring + "where (venuename like '%$VN%') ";}
if ($AC !="") {$querystring = $guerystring + "and (areacode like '%$AC%') ";}
if ($AG!="") {$querystring = $guerystring + "and (agegroup like '%$AG%')";}
$SearchMatch = mysql_query ($querystring, $mysql_mylink) or die(mysql_error());
if ($MatchRecordRow = mysql_fetch_array($SearchMatch)) {
do{
echo "<TR><td>".$MatchRecordRow['venuename']."</TD>";
echo "<td>".$MatchRecordRow['areacode']."</TD><td>".$MatchRecordRow['agegroup']."</TD>";
echo "<td>".$MatchRecordRow['city']."</TD><td>".$MatchRecordRow['state']."</TD>";
} while($MatchRecordRow = mysql_fetch_array($SearchMatch));
} else {echo "<center>Sorry, No Records Were Found!</center>";}
echo "</table>";
mysql_free_result($SearchMatch);
?>
- <?php
- $VN = $_POST[venuename];
- $AC = $_POST[areacode];
- $AG = $_POST[agegroup];
- //-----HOW DO I ADD THESE TO VARIBLES TO THE QUERY FROM MY SEARCH FORM---------
- $VT = $_POST[venuetype];
- $MT = $_POST[musictype];
- //-----------------------------------------------------
- $mysql_mylink = mysql_pconnect(localhost, nightsp, babystuff) or die(mysql_error());
- mysql_select_db (nightsp_nightspotz) or die(mysql_error());
- echo "<TABLE class='sortable' id='Identify' BORDER=1 align=center>";
- echo "<TD>VENUENAME</TD><TD>AREACODE</TD><TD>AGE GROUP</TD><TD>CITY</TD><TD>STATE</TD>";
- $querystring = "select * from venues";
- if ($VN !="") {$querystring = $guerystring + "where (venuename like '%$VN%') ";}
- if ($AC !="") {$querystring = $guerystring + "and (areacode like '%$AC%') ";}
- if ($AG!="") {$querystring = $guerystring + "and (agegroup like '%$AG%')";}
- $SearchMatch = mysql_query ($querystring, $mysql_mylink) or die(mysql_error());
- if ($MatchRecordRow = mysql_fetch_array($SearchMatch)) {
- do{
- echo "<TR><td>".$MatchRecordRow['venuename']."</TD>";
- echo "<td>".$MatchRecordRow['areacode']."</TD><td>".$MatchRecordRow['agegroup']."</TD>";
- echo "<td>".$MatchRecordRow['city']."</TD><td>".$MatchRecordRow['state']."</TD>";
- } while($MatchRecordRow = mysql_fetch_array($SearchMatch));
- } else {echo "<center>Sorry, No Records Were Found!</center>";}
- echo "</table>";
- mysql_free_result($SearchMatch);
- ?>
Well, I just tested the code you posted above and it works fine for me (by fine I mean I received no errors). Obviously I had to use my own database and tables etc, but the syntax remained the same. One thing about the code in you last post though:
Should be:
Either that or setup some variables to hold the connection details, and pass them through (as in the first block of code you posted).
mysql_pconnect(localhost, nightsp, babystuff)
Should be:
mysql_pconnect("localhost", "nightsp", "babystuff")
Why do geeks get Halloween and Christmas confused?
Because 31 Oct == 25 Dec
www.darren-king.co.uk
Because 31 Oct == 25 Dec
www.darren-king.co.uk
- olm75
- Proficient


- Joined: Aug 07, 2005
- Posts: 293
- Status: Offline
now i get this error:
You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '0' at line 1
and here' my code:
<?php
$VN = $_POST[venuename];
$AC = $_POST[areacode];
$AG = $_POST[agegroup];
//-----HOW DO I ADD THESE TO VARIBLES TO THE QUERY FROM MY SEARCH FORM---------
$VT = $_POST[venuetype];
$MT = $_POST[musictype];
//-----------------------------------------------------
$mysql_mylink = mysql_pconnect("localhost", "nightsp", "babystuff") or die(mysql_error());
mysql_select_db (nightsp_nightspotz) or die(mysql_error());
echo "<TABLE class='sortable' id='Identify' BORDER=1 align=center>";
echo "<TD>VENUENAME</TD><TD>AREACODE</TD><TD>AGE GROUP</TD><TD>CITY</TD><TD>STATE</TD>";
$querystring = "select * from venues";
if ($VN !="") {$querystring = $guerystring + "where (venuename like '%$VN%') ";}
if ($AC !="") {$querystring = $guerystring + "and (areacode like '%$AC%') ";}
if ($AG!="") {$querystring = $guerystring + "and (agegroup like '%$AG%')";}
$SearchMatch = mysql_query ($querystring, $mysql_mylink) or die(mysql_error());
if ($MatchRecordRow = mysql_fetch_array($SearchMatch)) {
do{
echo "<TR><td>".$MatchRecordRow['venuename']."</TD>";
echo "<td>".$MatchRecordRow['areacode']."</TD><td>".$MatchRecordRow['agegroup']."</TD>";
echo "<td>".$MatchRecordRow['city']."</TD><td>".$MatchRecordRow['state']."</TD>";
} while($MatchRecordRow = mysql_fetch_array($SearchMatch));
} else {echo "<center>Sorry, No Records Were Found!</center>";}
echo "</table>";
mysql_free_result($SearchMatch);
?>
You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '0' at line 1
and here' my code:
<?php
$VN = $_POST[venuename];
$AC = $_POST[areacode];
$AG = $_POST[agegroup];
//-----HOW DO I ADD THESE TO VARIBLES TO THE QUERY FROM MY SEARCH FORM---------
$VT = $_POST[venuetype];
$MT = $_POST[musictype];
//-----------------------------------------------------
$mysql_mylink = mysql_pconnect("localhost", "nightsp", "babystuff") or die(mysql_error());
mysql_select_db (nightsp_nightspotz) or die(mysql_error());
echo "<TABLE class='sortable' id='Identify' BORDER=1 align=center>";
echo "<TD>VENUENAME</TD><TD>AREACODE</TD><TD>AGE GROUP</TD><TD>CITY</TD><TD>STATE</TD>";
$querystring = "select * from venues";
if ($VN !="") {$querystring = $guerystring + "where (venuename like '%$VN%') ";}
if ($AC !="") {$querystring = $guerystring + "and (areacode like '%$AC%') ";}
if ($AG!="") {$querystring = $guerystring + "and (agegroup like '%$AG%')";}
$SearchMatch = mysql_query ($querystring, $mysql_mylink) or die(mysql_error());
if ($MatchRecordRow = mysql_fetch_array($SearchMatch)) {
do{
echo "<TR><td>".$MatchRecordRow['venuename']."</TD>";
echo "<td>".$MatchRecordRow['areacode']."</TD><td>".$MatchRecordRow['agegroup']."</TD>";
echo "<td>".$MatchRecordRow['city']."</TD><td>".$MatchRecordRow['state']."</TD>";
} while($MatchRecordRow = mysql_fetch_array($SearchMatch));
} else {echo "<center>Sorry, No Records Were Found!</center>";}
echo "</table>";
mysql_free_result($SearchMatch);
?>
- <?php
- $VN = $_POST[venuename];
- $AC = $_POST[areacode];
- $AG = $_POST[agegroup];
- //-----HOW DO I ADD THESE TO VARIBLES TO THE QUERY FROM MY SEARCH FORM---------
- $VT = $_POST[venuetype];
- $MT = $_POST[musictype];
- //-----------------------------------------------------
- $mysql_mylink = mysql_pconnect("localhost", "nightsp", "babystuff") or die(mysql_error());
- mysql_select_db (nightsp_nightspotz) or die(mysql_error());
- echo "<TABLE class='sortable' id='Identify' BORDER=1 align=center>";
- echo "<TD>VENUENAME</TD><TD>AREACODE</TD><TD>AGE GROUP</TD><TD>CITY</TD><TD>STATE</TD>";
- $querystring = "select * from venues";
- if ($VN !="") {$querystring = $guerystring + "where (venuename like '%$VN%') ";}
- if ($AC !="") {$querystring = $guerystring + "and (areacode like '%$AC%') ";}
- if ($AG!="") {$querystring = $guerystring + "and (agegroup like '%$AG%')";}
- $SearchMatch = mysql_query ($querystring, $mysql_mylink) or die(mysql_error());
- if ($MatchRecordRow = mysql_fetch_array($SearchMatch)) {
- do{
- echo "<TR><td>".$MatchRecordRow['venuename']."</TD>";
- echo "<td>".$MatchRecordRow['areacode']."</TD><td>".$MatchRecordRow['agegroup']."</TD>";
- echo "<td>".$MatchRecordRow['city']."</TD><td>".$MatchRecordRow['state']."</TD>";
- } while($MatchRecordRow = mysql_fetch_array($SearchMatch));
- } else {echo "<center>Sorry, No Records Were Found!</center>";}
- echo "</table>";
- mysql_free_result($SearchMatch);
- ?>
You'll need to put quotes around the variables that you are trying to access in the POST array. Also, you'll need to put quotes around the value passed to the "mysql_select_db" function.
I.E.:
I.E.:
<?php
$VN = $_POST["venuename"];
$AC = $_POST["areacode"];
$AG = $_POST["agegroup"];
//-----HOW DO I ADD THESE TO VARIBLES TO THE QUERY FROM MY SEARCH FORM---------
$VT = $_POST["venuetype"];
$MT = $_POST["musictype"];
//-----------------------------------------------------
$mysql_mylink = mysql_pconnect("localhost", "nightsp", "babystuff") or die(mysql_error());
mysql_select_db ("nightsp_nightspotz") or die(mysql_error());
echo "<TABLE class='sortable' id='Identify' BORDER=1 align=center>";
echo "<TD>VENUENAME</TD><TD>AREACODE</TD><TD>AGE GROUP</TD><TD>CITY</TD><TD>STATE</TD>";
$querystring = "select * from venues";
if ($VN !="") {$querystring = $guerystring + "where (venuename like '%$VN%') ";}
if ($AC !="") {$querystring = $guerystring + "and (areacode like '%$AC%') ";}
if ($AG!="") {$querystring = $guerystring + "and (agegroup like '%$AG%')";}
$SearchMatch = mysql_query ($querystring, $mysql_mylink) or die(mysql_error());
if ($MatchRecordRow = mysql_fetch_array($SearchMatch)) {
do{
echo "<TR><td>".$MatchRecordRow['venuename']."</TD>";
echo "<td>".$MatchRecordRow['areacode']."</TD><td>".$MatchRecordRow['agegroup']."</TD>";
echo "<td>".$MatchRecordRow['city']."</TD><td>".$MatchRecordRow['state']."</TD>";
} while($MatchRecordRow = mysql_fetch_array($SearchMatch));
} else {echo "<center>Sorry, No Records Were Found!</center>";}
echo "</table>";
mysql_free_result($SearchMatch);
?>
$VN = $_POST["venuename"];
$AC = $_POST["areacode"];
$AG = $_POST["agegroup"];
//-----HOW DO I ADD THESE TO VARIBLES TO THE QUERY FROM MY SEARCH FORM---------
$VT = $_POST["venuetype"];
$MT = $_POST["musictype"];
//-----------------------------------------------------
$mysql_mylink = mysql_pconnect("localhost", "nightsp", "babystuff") or die(mysql_error());
mysql_select_db ("nightsp_nightspotz") or die(mysql_error());
echo "<TABLE class='sortable' id='Identify' BORDER=1 align=center>";
echo "<TD>VENUENAME</TD><TD>AREACODE</TD><TD>AGE GROUP</TD><TD>CITY</TD><TD>STATE</TD>";
$querystring = "select * from venues";
if ($VN !="") {$querystring = $guerystring + "where (venuename like '%$VN%') ";}
if ($AC !="") {$querystring = $guerystring + "and (areacode like '%$AC%') ";}
if ($AG!="") {$querystring = $guerystring + "and (agegroup like '%$AG%')";}
$SearchMatch = mysql_query ($querystring, $mysql_mylink) or die(mysql_error());
if ($MatchRecordRow = mysql_fetch_array($SearchMatch)) {
do{
echo "<TR><td>".$MatchRecordRow['venuename']."</TD>";
echo "<td>".$MatchRecordRow['areacode']."</TD><td>".$MatchRecordRow['agegroup']."</TD>";
echo "<td>".$MatchRecordRow['city']."</TD><td>".$MatchRecordRow['state']."</TD>";
} while($MatchRecordRow = mysql_fetch_array($SearchMatch));
} else {echo "<center>Sorry, No Records Were Found!</center>";}
echo "</table>";
mysql_free_result($SearchMatch);
?>
- <?php
- $VN = $_POST["venuename"];
- $AC = $_POST["areacode"];
- $AG = $_POST["agegroup"];
- //-----HOW DO I ADD THESE TO VARIBLES TO THE QUERY FROM MY SEARCH FORM---------
- $VT = $_POST["venuetype"];
- $MT = $_POST["musictype"];
- //-----------------------------------------------------
- $mysql_mylink = mysql_pconnect("localhost", "nightsp", "babystuff") or die(mysql_error());
- mysql_select_db ("nightsp_nightspotz") or die(mysql_error());
- echo "<TABLE class='sortable' id='Identify' BORDER=1 align=center>";
- echo "<TD>VENUENAME</TD><TD>AREACODE</TD><TD>AGE GROUP</TD><TD>CITY</TD><TD>STATE</TD>";
- $querystring = "select * from venues";
- if ($VN !="") {$querystring = $guerystring + "where (venuename like '%$VN%') ";}
- if ($AC !="") {$querystring = $guerystring + "and (areacode like '%$AC%') ";}
- if ($AG!="") {$querystring = $guerystring + "and (agegroup like '%$AG%')";}
- $SearchMatch = mysql_query ($querystring, $mysql_mylink) or die(mysql_error());
- if ($MatchRecordRow = mysql_fetch_array($SearchMatch)) {
- do{
- echo "<TR><td>".$MatchRecordRow['venuename']."</TD>";
- echo "<td>".$MatchRecordRow['areacode']."</TD><td>".$MatchRecordRow['agegroup']."</TD>";
- echo "<td>".$MatchRecordRow['city']."</TD><td>".$MatchRecordRow['state']."</TD>";
- } while($MatchRecordRow = mysql_fetch_array($SearchMatch));
- } else {echo "<center>Sorry, No Records Were Found!</center>";}
- echo "</table>";
- mysql_free_result($SearchMatch);
- ?>
Why do geeks get Halloween and Christmas confused?
Because 31 Oct == 25 Dec
www.darren-king.co.uk
Because 31 Oct == 25 Dec
www.darren-king.co.uk
- olm75
- Proficient


- Joined: Aug 07, 2005
- Posts: 293
- Status: Offline
- olm75
- Proficient


- Joined: Aug 07, 2005
- Posts: 293
- Status: Offline
i get the same error message
i added it like this right:
<?php
$venuename = $_POST["venuename"];
$areacode = $_POST["areacode"];
$agegroup = $_POST["agegroup"];
$venuetype = $_POST["venuetype"];
$musictype = $_POST["musictype"];
//--------------connection and query---------------
$mysql_mylink = mysql_pconnect("localhost", "nightsp", "babystuff") or die(mysql_error());
mysql_select_db ("nightsp_nightspotz") or die(mysql_error());
echo "<TABLE class='sortable' id='Identify' BORDER=1 align=center>";
echo "<TD>VENUENAME</TD><TD>AREACODE</TD><TD>AGE GROUP</TD><TD>CITY</TD><TD>STATE</TD>";
echo $querystring;
$querystring = "select * from venues";
if ($venuename !="") {$querystring = $guerystring + "where (venuename like '%$venuename%') ";}
if ($areacode !="") {$querystring = $guerystring + "and (areacode like '%$areacode%') ";}
if ($agegroup!="") {$querystring = $guerystring + "and (agegroup like '%$agegroup%')";}
if ($venuetype!="") {$querystring = $guerystring + "and (venuetype like '%$venuetype%')";}
if ($musictype!="") {$querystring = $guerystring + "and (musictype like '%$musictype%')";}
//--------------start output-------------
$SearchMatch = mysql_query ($querystring, $mysql_mylink) or die(mysql_error());
if ($MatchRecordRow = mysql_fetch_array($SearchMatch)) {
do{
echo "<TR><td>".$MatchRecordRow['venuename']."</TD>";
echo "<td>".$MatchRecordRow['areacode']."</TD><td>".$MatchRecordRow['agegroup']."</TD>";
echo "<td>".$MatchRecordRow['city']."</TD><td>".$MatchRecordRow['state']."</TD>";
} while($MatchRecordRow = mysql_fetch_array($SearchMatch));
} else {echo "<center>Sorry, No Records Were Found!</center>";}
echo "</table>";
mysql_free_result($SearchMatch);
?>
i added it like this right:
<?php
$venuename = $_POST["venuename"];
$areacode = $_POST["areacode"];
$agegroup = $_POST["agegroup"];
$venuetype = $_POST["venuetype"];
$musictype = $_POST["musictype"];
//--------------connection and query---------------
$mysql_mylink = mysql_pconnect("localhost", "nightsp", "babystuff") or die(mysql_error());
mysql_select_db ("nightsp_nightspotz") or die(mysql_error());
echo "<TABLE class='sortable' id='Identify' BORDER=1 align=center>";
echo "<TD>VENUENAME</TD><TD>AREACODE</TD><TD>AGE GROUP</TD><TD>CITY</TD><TD>STATE</TD>";
echo $querystring;
$querystring = "select * from venues";
if ($venuename !="") {$querystring = $guerystring + "where (venuename like '%$venuename%') ";}
if ($areacode !="") {$querystring = $guerystring + "and (areacode like '%$areacode%') ";}
if ($agegroup!="") {$querystring = $guerystring + "and (agegroup like '%$agegroup%')";}
if ($venuetype!="") {$querystring = $guerystring + "and (venuetype like '%$venuetype%')";}
if ($musictype!="") {$querystring = $guerystring + "and (musictype like '%$musictype%')";}
//--------------start output-------------
$SearchMatch = mysql_query ($querystring, $mysql_mylink) or die(mysql_error());
if ($MatchRecordRow = mysql_fetch_array($SearchMatch)) {
do{
echo "<TR><td>".$MatchRecordRow['venuename']."</TD>";
echo "<td>".$MatchRecordRow['areacode']."</TD><td>".$MatchRecordRow['agegroup']."</TD>";
echo "<td>".$MatchRecordRow['city']."</TD><td>".$MatchRecordRow['state']."</TD>";
} while($MatchRecordRow = mysql_fetch_array($SearchMatch));
} else {echo "<center>Sorry, No Records Were Found!</center>";}
echo "</table>";
mysql_free_result($SearchMatch);
?>
- <?php
- $venuename = $_POST["venuename"];
- $areacode = $_POST["areacode"];
- $agegroup = $_POST["agegroup"];
- $venuetype = $_POST["venuetype"];
- $musictype = $_POST["musictype"];
- //--------------connection and query---------------
- $mysql_mylink = mysql_pconnect("localhost", "nightsp", "babystuff") or die(mysql_error());
- mysql_select_db ("nightsp_nightspotz") or die(mysql_error());
- echo "<TABLE class='sortable' id='Identify' BORDER=1 align=center>";
- echo "<TD>VENUENAME</TD><TD>AREACODE</TD><TD>AGE GROUP</TD><TD>CITY</TD><TD>STATE</TD>";
- echo $querystring;
- $querystring = "select * from venues";
- if ($venuename !="") {$querystring = $guerystring + "where (venuename like '%$venuename%') ";}
- if ($areacode !="") {$querystring = $guerystring + "and (areacode like '%$areacode%') ";}
- if ($agegroup!="") {$querystring = $guerystring + "and (agegroup like '%$agegroup%')";}
- if ($venuetype!="") {$querystring = $guerystring + "and (venuetype like '%$venuetype%')";}
- if ($musictype!="") {$querystring = $guerystring + "and (musictype like '%$musictype%')";}
- //--------------start output-------------
- $SearchMatch = mysql_query ($querystring, $mysql_mylink) or die(mysql_error());
- if ($MatchRecordRow = mysql_fetch_array($SearchMatch)) {
- do{
- echo "<TR><td>".$MatchRecordRow['venuename']."</TD>";
- echo "<td>".$MatchRecordRow['areacode']."</TD><td>".$MatchRecordRow['agegroup']."</TD>";
- echo "<td>".$MatchRecordRow['city']."</TD><td>".$MatchRecordRow['state']."</TD>";
- } while($MatchRecordRow = mysql_fetch_array($SearchMatch));
- } else {echo "<center>Sorry, No Records Were Found!</center>";}
- echo "</table>";
- mysql_free_result($SearchMatch);
- ?>
But does the query get outputted to the screen before the error message? I want to see the SQL that you are trying to execute. Change your code to the following:
And then post the SQL that gets written to the screen. It should be in the form "select * from venues where ... "
<?php
$venuename = $_POST["venuename"];
$areacode = $_POST["areacode"];
$agegroup = $_POST["agegroup"];
$venuetype = $_POST["venuetype"];
$musictype = $_POST["musictype"];
//--------------connection and query---------------
$mysql_mylink = mysql_pconnect("localhost", "nightsp", "babystuff") or die(mysql_error());
mysql_select_db ("nightsp_nightspotz") or die(mysql_error());
echo "<TABLE class='sortable' id='Identify' BORDER=1 align=center>";
echo "<TD>VENUENAME</TD><TD>AREACODE</TD><TD>AGE GROUP</TD><TD>CITY</TD><TD>STATE</TD>";
$querystring = "select * from venues";
if ($venuename !="") {$querystring = $guerystring + "where (venuename like '%$venuename%') ";}
if ($areacode !="") {$querystring = $guerystring + "and (areacode like '%$areacode%') ";}
if ($agegroup!="") {$querystring = $guerystring + "and (agegroup like '%$agegroup%')";}
if ($venuetype!="") {$querystring = $guerystring + "and (venuetype like '%$venuetype%')";}
if ($musictype!="") {$querystring = $guerystring + "and (musictype like '%$musictype%')";}
//--------------start output-------------
echo $querystring;
/*
$SearchMatch = mysql_query ($querystring, $mysql_mylink) or die(mysql_error());
if ($MatchRecordRow = mysql_fetch_array($SearchMatch)) {
do{
echo "<TR><td>".$MatchRecordRow['venuename']."</TD>";
echo "<td>".$MatchRecordRow['areacode']."</TD><td>".$MatchRecordRow['agegroup']."</TD>";
echo "<td>".$MatchRecordRow['city']."</TD><td>".$MatchRecordRow['state']."</TD>";
} while($MatchRecordRow = mysql_fetch_array($SearchMatch));
} else {echo "<center>Sorry, No Records Were Found!</center>";}
echo "</table>";
mysql_free_result($SearchMatch);*/
?>
$venuename = $_POST["venuename"];
$areacode = $_POST["areacode"];
$agegroup = $_POST["agegroup"];
$venuetype = $_POST["venuetype"];
$musictype = $_POST["musictype"];
//--------------connection and query---------------
$mysql_mylink = mysql_pconnect("localhost", "nightsp", "babystuff") or die(mysql_error());
mysql_select_db ("nightsp_nightspotz") or die(mysql_error());
echo "<TABLE class='sortable' id='Identify' BORDER=1 align=center>";
echo "<TD>VENUENAME</TD><TD>AREACODE</TD><TD>AGE GROUP</TD><TD>CITY</TD><TD>STATE</TD>";
$querystring = "select * from venues";
if ($venuename !="") {$querystring = $guerystring + "where (venuename like '%$venuename%') ";}
if ($areacode !="") {$querystring = $guerystring + "and (areacode like '%$areacode%') ";}
if ($agegroup!="") {$querystring = $guerystring + "and (agegroup like '%$agegroup%')";}
if ($venuetype!="") {$querystring = $guerystring + "and (venuetype like '%$venuetype%')";}
if ($musictype!="") {$querystring = $guerystring + "and (musictype like '%$musictype%')";}
//--------------start output-------------
echo $querystring;
/*
$SearchMatch = mysql_query ($querystring, $mysql_mylink) or die(mysql_error());
if ($MatchRecordRow = mysql_fetch_array($SearchMatch)) {
do{
echo "<TR><td>".$MatchRecordRow['venuename']."</TD>";
echo "<td>".$MatchRecordRow['areacode']."</TD><td>".$MatchRecordRow['agegroup']."</TD>";
echo "<td>".$MatchRecordRow['city']."</TD><td>".$MatchRecordRow['state']."</TD>";
} while($MatchRecordRow = mysql_fetch_array($SearchMatch));
} else {echo "<center>Sorry, No Records Were Found!</center>";}
echo "</table>";
mysql_free_result($SearchMatch);*/
?>
- <?php
- $venuename = $_POST["venuename"];
- $areacode = $_POST["areacode"];
- $agegroup = $_POST["agegroup"];
- $venuetype = $_POST["venuetype"];
- $musictype = $_POST["musictype"];
- //--------------connection and query---------------
- $mysql_mylink = mysql_pconnect("localhost", "nightsp", "babystuff") or die(mysql_error());
- mysql_select_db ("nightsp_nightspotz") or die(mysql_error());
- echo "<TABLE class='sortable' id='Identify' BORDER=1 align=center>";
- echo "<TD>VENUENAME</TD><TD>AREACODE</TD><TD>AGE GROUP</TD><TD>CITY</TD><TD>STATE</TD>";
- $querystring = "select * from venues";
- if ($venuename !="") {$querystring = $guerystring + "where (venuename like '%$venuename%') ";}
- if ($areacode !="") {$querystring = $guerystring + "and (areacode like '%$areacode%') ";}
- if ($agegroup!="") {$querystring = $guerystring + "and (agegroup like '%$agegroup%')";}
- if ($venuetype!="") {$querystring = $guerystring + "and (venuetype like '%$venuetype%')";}
- if ($musictype!="") {$querystring = $guerystring + "and (musictype like '%$musictype%')";}
- //--------------start output-------------
- echo $querystring;
- /*
- $SearchMatch = mysql_query ($querystring, $mysql_mylink) or die(mysql_error());
- if ($MatchRecordRow = mysql_fetch_array($SearchMatch)) {
- do{
- echo "<TR><td>".$MatchRecordRow['venuename']."</TD>";
- echo "<td>".$MatchRecordRow['areacode']."</TD><td>".$MatchRecordRow['agegroup']."</TD>";
- echo "<td>".$MatchRecordRow['city']."</TD><td>".$MatchRecordRow['state']."</TD>";
- } while($MatchRecordRow = mysql_fetch_array($SearchMatch));
- } else {echo "<center>Sorry, No Records Were Found!</center>";}
- echo "</table>";
- mysql_free_result($SearchMatch);*/
- ?>
And then post the SQL that gets written to the screen. It should be in the form "select * from venues where ... "
Why do geeks get Halloween and Christmas confused?
Because 31 Oct == 25 Dec
www.darren-king.co.uk
Because 31 Oct == 25 Dec
www.darren-king.co.uk
- olm75
- Proficient


- Joined: Aug 07, 2005
- Posts: 293
- Status: Offline
In your "if" statements, you've spelt "querystring" wrong on a number of occasions (you've spelt it "guerystring" rather than "querystring"). Change this and see if it makes a difference.
Why do geeks get Halloween and Christmas confused?
Because 31 Oct == 25 Dec
www.darren-king.co.uk
Because 31 Oct == 25 Dec
www.darren-king.co.uk
- olm75
- Proficient


- Joined: Aug 07, 2005
- Posts: 293
- Status: Offline
im afraid its the same
<?php
$venuename = $_POST["venuename"];
$areacode = $_POST["areacode"];
$agegroup = $_POST["agegroup"];
$venuetype = $_POST["venuetype"];
$musictype = $_POST["musictype"];
//--------------connection and query---------------
$mysql_mylink = mysql_pconnect("localhost", "nightsp", "babystuff") or die(mysql_error());
mysql_select_db ("nightsp_nightspotz") or die(mysql_error());
echo "<TABLE class='sortable' id='Identify' BORDER=1 align=center>";
echo "<TD>VENUENAME</TD><TD>AREACODE</TD><TD>AGE GROUP</TD><TD>CITY</TD><TD>STATE</TD>";
$querystring = "select * from venues";
if ($venuename !="") {$querystring = $querystring + "where (venuename like '%$venuename%') ";}
if ($areacode !="") {$querystring = $querystring + "and (areacode like '%$areacode%') ";}
if ($agegroup!="") {$querystring = $querystring + "and (agegroup like '%$agegroup%')";}
if ($venuetype!="") {$querystring = $querystring + "and (venuetype like '%$venuetype%')";}
if ($musictype!="") {$querystring = $querystring + "and (musictype like '%$musictype%')";}
//--------------start output-------------
echo $querystring;
/*
$SearchMatch = mysql_query ($querystring, $mysql_mylink) or die(mysql_error());
if ($MatchRecordRow = mysql_fetch_array($SearchMatch)) {
do{
echo "<TR><td>".$MatchRecordRow['venuename']."</TD>";
echo "<td>".$MatchRecordRow['areacode']."</TD><td>".$MatchRecordRow['agegroup']."</TD>";
echo "<td>".$MatchRecordRow['city']."</TD><td>".$MatchRecordRow['state']."</TD>";
} while($MatchRecordRow = mysql_fetch_array($SearchMatch));
} else {echo "<center>Sorry, No Records Were Found!</center>";}
echo "</table>";
mysql_free_result($SearchMatch);*/
?>
<?php
$venuename = $_POST["venuename"];
$areacode = $_POST["areacode"];
$agegroup = $_POST["agegroup"];
$venuetype = $_POST["venuetype"];
$musictype = $_POST["musictype"];
//--------------connection and query---------------
$mysql_mylink = mysql_pconnect("localhost", "nightsp", "babystuff") or die(mysql_error());
mysql_select_db ("nightsp_nightspotz") or die(mysql_error());
echo "<TABLE class='sortable' id='Identify' BORDER=1 align=center>";
echo "<TD>VENUENAME</TD><TD>AREACODE</TD><TD>AGE GROUP</TD><TD>CITY</TD><TD>STATE</TD>";
$querystring = "select * from venues";
if ($venuename !="") {$querystring = $querystring + "where (venuename like '%$venuename%') ";}
if ($areacode !="") {$querystring = $querystring + "and (areacode like '%$areacode%') ";}
if ($agegroup!="") {$querystring = $querystring + "and (agegroup like '%$agegroup%')";}
if ($venuetype!="") {$querystring = $querystring + "and (venuetype like '%$venuetype%')";}
if ($musictype!="") {$querystring = $querystring + "and (musictype like '%$musictype%')";}
//--------------start output-------------
echo $querystring;
/*
$SearchMatch = mysql_query ($querystring, $mysql_mylink) or die(mysql_error());
if ($MatchRecordRow = mysql_fetch_array($SearchMatch)) {
do{
echo "<TR><td>".$MatchRecordRow['venuename']."</TD>";
echo "<td>".$MatchRecordRow['areacode']."</TD><td>".$MatchRecordRow['agegroup']."</TD>";
echo "<td>".$MatchRecordRow['city']."</TD><td>".$MatchRecordRow['state']."</TD>";
} while($MatchRecordRow = mysql_fetch_array($SearchMatch));
} else {echo "<center>Sorry, No Records Were Found!</center>";}
echo "</table>";
mysql_free_result($SearchMatch);*/
?>
- <?php
- $venuename = $_POST["venuename"];
- $areacode = $_POST["areacode"];
- $agegroup = $_POST["agegroup"];
- $venuetype = $_POST["venuetype"];
- $musictype = $_POST["musictype"];
- //--------------connection and query---------------
- $mysql_mylink = mysql_pconnect("localhost", "nightsp", "babystuff") or die(mysql_error());
- mysql_select_db ("nightsp_nightspotz") or die(mysql_error());
- echo "<TABLE class='sortable' id='Identify' BORDER=1 align=center>";
- echo "<TD>VENUENAME</TD><TD>AREACODE</TD><TD>AGE GROUP</TD><TD>CITY</TD><TD>STATE</TD>";
- $querystring = "select * from venues";
- if ($venuename !="") {$querystring = $querystring + "where (venuename like '%$venuename%') ";}
- if ($areacode !="") {$querystring = $querystring + "and (areacode like '%$areacode%') ";}
- if ($agegroup!="") {$querystring = $querystring + "and (agegroup like '%$agegroup%')";}
- if ($venuetype!="") {$querystring = $querystring + "and (venuetype like '%$venuetype%')";}
- if ($musictype!="") {$querystring = $querystring + "and (musictype like '%$musictype%')";}
- //--------------start output-------------
- echo $querystring;
- /*
- $SearchMatch = mysql_query ($querystring, $mysql_mylink) or die(mysql_error());
- if ($MatchRecordRow = mysql_fetch_array($SearchMatch)) {
- do{
- echo "<TR><td>".$MatchRecordRow['venuename']."</TD>";
- echo "<td>".$MatchRecordRow['areacode']."</TD><td>".$MatchRecordRow['agegroup']."</TD>";
- echo "<td>".$MatchRecordRow['city']."</TD><td>".$MatchRecordRow['state']."</TD>";
- } while($MatchRecordRow = mysql_fetch_array($SearchMatch));
- } else {echo "<center>Sorry, No Records Were Found!</center>";}
- echo "</table>";
- mysql_free_result($SearchMatch);*/
- ?>
- Anonymous
- Bot


- Joined: 25 Feb 2008
- Posts: ?
- Loc: Ozzuland
- Status: Online
August 10th, 2005, 3:08 am
To Reply to this topic you need to LOGIN or REGISTER. It is free.
Post Information
- Total Posts in this topic: 42 posts
- Users browsing this forum: No registered users and 219 guests
- You cannot post new topics in this forum
- You cannot reply to topics in this forum
- You cannot edit your posts in this forum
- You cannot delete your posts in this forum
- You cannot post attachments in this forum



