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.
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-09-12 2 New Horoscope Pages -1- -2-
2012-09-11 5 New Horoscope Pages -1- -2- -3- -4- -5-
2012-09-10 6 New Horoscope Pages -1- -2- -3- -4- -5- -6-
2012-06-22 2 New Would You Rather Pages -1- -2-
2012-05-13 1 New Family History Pages -1-
2012-04-19 2 New Family History Pages -1- -2-
2012-04-12 3 New Family History Pages -1- -2- -3-
2011-11-13 1 new Life Lessons pages -1-
2011-11-12 3 New Making Friends Page -1- -2- -3-
2011-09-30 1 New Questions Page -1-
2011-09-29 3 Updated Category Pages -1- -2- -3-
2011-08-23 2 new Life Lessons pages -1- -2-
2011-08-19 13 new get to know you questions. Check it Out
2011-08-13 1 New Library Page -1-
2011-08-13 4 Updated New Questions Pages -1- -2- -3- -4-
2011-08-13 4 Updated Top Questions Pages -1- -2- -3- -4-
2011-08-07 1 New Truth or Dare Page -1-
2011-08-07 7 New dares for Truth or Dare -1-
2011-08-03 9 New Life Lessons Questions -1-
2011-08-03 2 New Truth or Dare Pages -1- -2-
2011-08-03 Updated 9 Truth or Dare pages
2011-08-03 Updated 5 Ponderables pages -1- -2- -3- -4- -5-
2011-07-25 New FunAdvice Page page
2011-07-22 4 New Life Lessons Pages Hypothetical Questions -1- -2- -3- -4-
2011-07-22 New Life Lessons Page Moral Quandaries
2011-07-09 7 New Truth or Dare Pages -1- -2- -3- -4- -5- -6- -7-
2011-07-09 81 New Life Lessons Questions -1-
2011-07-09 New Life Lessons page (Business Small Talk) -1-
2011-07-09 27 New Life Lessons Questions -1-
2011-07-09 5 new get to know you questions. Check it Out
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);
?>