Miscellaneous Get To Know You Questions
Grab Bag (Miscellaneous & Uncategorized)
We are a product of the environment we live in. It is only natural to question our society and how we relate to it. We will also examin how our society relates to the world at large. Questions on holidays are also categorized here. We also address questions of law and societies through time.
$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 = 0;
$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);
?>
“It isn't what you have, or who you are, or where you are, or what you are doing that makes you happy or unhappy. It is what you think about.”
–Dale Carnegie
What do you think about when there is nothing to think about?
Fun get to know you questions for all ages home
All Questions . . . <<Previous Page - Random Questons - Next Page >>
Page Number -1- -2- -3- -4-
See Questions on Childhood or Work
Check It Out : LifeLessons, 25 questions you had better know the answer to before going into a job interview.
$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);
?>