| Could not successfully run query ($sql) from DB: " . mysql_error() . " | ";
exit;
}
if (mysql_num_rows($result) == 0) {
echo "| No Questions matching your search terms were found. |
";
exit;
}
else
{
// While a row of data exists, put that row in $row as an associative array
// Note: If you're expecting just one row, no need to use a loop
// Note: If you put extract($row); inside the following loop, you'll
// then create $userid, $fullname, and $userstatus
while ($row = mysql_fetch_assoc($result)) {
$Question = $row["Question"];
$Answer = $row["Answer"];
?>
| Q. |
How
do I return an item? |
| A. |
Please refer to our returns
section.
|
| Q. |
What
if my item is defective? |
| A. |
Please refer to our returns
section.
|
| Q. |
What
is your return policy? |
| A. |
Please refer to our Guarantee
section.
|
| Q. |
Did
my item ship yet? |
| A. |
You can check the status of your order from our tracking
page located here.
|
| Q. |
How
can I cancel an order? |
| A. |
Please refer to our Order Cancellation
or Modification section.
|
| Q. |
I
received the tracking information but my Package never arrived?
|
| A. |
Please refer to our Lost Order
section. |
 |
";
//echo $row["price"] . "
" . "
";
}
}
?>