What are some tips for dating?
December 27, 2011 | 5 Comments
What are some tips for dating? I’m 13, and there are over 3 different girls that like me. Im going to ask this one girl out, but i have no idea on how to do it.
How do i ask a girl out? And what are some tips for dating?
Please, don’t say 13 is too young to date because i know.
Just be yourself.
How do I find a date using php in a MySQL database?
December 20, 2011 | 1 Comment
What I want to do is find the next occurrence of the next Tuesday listed. There may be many dates before today and several dates after the next tuesday listed. Let’s say today is 12/17/11 and the next date listed is 1/3/12, which is 3 tuesday’s from now so I can’t do a strtotime(‘next tuesday’).
This will get you started to get a list of the next 10 Tuesdays to then compare to your list.
One you get your "array of Tuesdays" you can then loop over your list of dates, checking if they are in the array, if you find a match, break out of the loop.
$today = date("D"); // returns Sun Mon Tue…..
echo ‘<p>Today ‘. $today;
//Based on todays date, figure out how many days you need to add to make the next tuesdays
//ie if today = Sun, then you need to add 2 to get to tuesday
$addToValue = 2;
$nextTues = date(‘m-d-Y’,mktime(0, 0, 0, date("m"),date("d") + 2, date("Y")));
echo ‘<p>The Next Tues ‘.$nextTues;
//Then create an array of the next x number of tuesdays you need
$tuesArr = array(); // first tues
$dateAdd=0;
for ($i=0; $i<=70; $i+= 7){
$dateAdd = $dateAdd+ $add; // add week to this coming tues
$nextT = mktime(0, 0, 0, date("m"),date("d") +$i + $addToValue, date("Y"));
// add to array
$tuesArr[] = date(‘m-d-Y’,$nextT);
}
//output list of tuesdays to see
echo ‘<pre>’;
echo ‘Array of Next 10 Tuesdays
‘;
print_r($tuesArr);
echo ‘</pre>’;
// next step YOU will need to compare your list to the array to find a match….
You can see the output here:
http://www.freelancewebprogrammer.com/dev/tuescheck.php
If you like this post, be sure to subscribe to my RSS feed!How do I find out the passport appointment date once I submitted the passport online application?
December 13, 2011 | 1 Comment
I have submitted the online application for passport reissue at http://passport.gov.in/pms/OnlineRegistration.jsp. It had asked me to choose a date and time for appointment which I do not remember now. The date and time isn’t printed on the passport application form that . How do I find the date of appointment?
submit another time
how do i find date of parents marraige?
December 2, 2011 | 3 Comments
I have narrowed it down to within 3 months via ancestry website but can i find exact date with out purchasing a certificate
Ask them.

