Get To Know What's New
What's New at Get To Know You
This site is expanding and evolving quickly. As a rapidly changing environment there always something new. To find our newest questions you can always go to the most recent questions page . For our frequent visitors this page provides a quick at a glance summary of what has recently changed. It also contains quick links to get to all new material.
2013-11-25 1 New Thought Provoking Questions Page. 1
2013-11-14 1 New Would You Rather Page. 1
2013-04-16 1 New Ponderables Page. 1
2013-01-06 1 New All Questions Page. 1
2013-01-06 12 New get to know you questions. Check it Out
2012-12-17 1 New truth or dare page -1-
2012-11-23 2 New Would You Rather Pages -1- -2-
2012-10-12 5 New Unanswered Questions Pages -1- -2- -3- -4- -5-
2012-09-28 3 New Would You Rather Pages -1- -2- -3-
2012-06-22 2 New Would You Rather Pages -1- -2-
Old Get To Know What’s New Page
Fun get to know you questions for all ages home
Previous Page - Random Questons
Check It Out : You have read the questions now read the answers. 200 Plus random answers from GetToKnowU.
Join the conversation on facebook .
$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);
?>