We have over 1000 get to know you questions.
$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");
$page = 18;
$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);
?>
Seek first to understand and then to be understood. The surest path to an argument is to have two people both bent on making the other one understand. In any of the relationships in life it is essential that you can put yourself in a mindset that you can see things from the other person’s point of view. As you have that vantage point you are also in the best position to make yourself understood.
Join the conversation on facebook .
Fun get to know you questions for all ages home
All Questions . . . <<Previous Page - -Random Questions - -Next Page >>
Page Number -1- -2- -3- -4- -5- -6- -7- -8- -9- -10-
-11- -12- -13- -14- -15- -16- -17- -18- -19- -20 -
-21- -22- -23- -24- -25 - -26- 27 - -28 - -29 - -30 -
-31- -32- -33- -34- -35-
Check It Out: Questions By Category (Ethics, Philosophy, Morals ) More than 100 questions that get to the heart of who you are.
$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);
?>