Miscellaneous Get To Know You Questions
Grab Bag (Miscellaneous & Uncategorized)
These are questions that do not accurately belong in the other categories.
$dbhost = 'custsql-ywh01.yourwebhostingmysql.com:3306';
$dbuser = 'trevorvernon';
$dbpass = '88888888tv';
$conn = mysql_connect($dbhost, $dbuser, $dbpass);
$dbname = 'gtku';
mysql_select_db($dbname, $conn);
$result = mysql_query("SELECT question from questionsmaster where category1 = 'potpourri' or category2 = 'potpourri'");
$page = 3;
$index = 0;
while($row = mysql_fetch_array($result))
{
if($index > 25*$page && $index < 25*($page+1))
{
echo $row['question'] . " " ;
echo " ";
$index++;
}
elseif ($index > 25*($page+1))
{
break;
}
else
$index++;
}
mysql_close($conn);
?>
There is a reason why Question and Quest have the same root word. They both come from the Anglo-English queste . Same they both in involve seeking or pursuing something. When viewed in light of the quests from the days of chivalry it difficult to imagine Sir Galahad leaving on a quest and not knowing what he is seeking. Likewise you should know what your goals are and build questions to match.
Fun get to know you questions for all ages home
All Questions . . . <<Previous Page - Random Questons
Page Number -1- -2- -3- -4-
See Questions on Childhood or Work
Check It Out : PuzzleSoup over 1000 rebus puzzles form the makes of GetToKnowYou
$dbhost = 'custsql-ywh01.yourwebhostingmysql.com:3306';
$dbuser = 'trevorvernon';
$dbpass = '88888888tv';
$conn = mysql_connect($dbhost, $dbuser, $dbpass);
$dbname = 'gtku';
mysql_select_db($dbname, $conn);
$result = mysql_query("SELECT Quote from Quotes Order BY RAND() ") ;
$page = 1;
$index = 0;
while($row = mysql_fetch_array($result))
{
if($index > 2*$page && $index < 2*($page+1))
{
echo $row['Quote'] . " " ;
echo " ";
$index++;
}
elseif ($index > 25*($page+1))
{
break;
}
else
$index++;
}
mysql_close($conn);
?>