<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Dating Online &#187; find a date</title>
	<atom:link href="http://www.the-dating-online.org/category/find-a-date/feed" rel="self" type="application/rss+xml" />
	<link>http://www.the-dating-online.org</link>
	<description>Find Your Perfect Date In The Digital Age!</description>
	<lastBuildDate>Mon, 06 Feb 2012 05:58:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>How do I find a date using php in a MySQL database?</title>
		<link>http://www.the-dating-online.org/how-do-i-find-a-date-using-php-in-a-mysql-database.html</link>
		<comments>http://www.the-dating-online.org/how-do-i-find-a-date-using-php-in-a-mysql-database.html#comments</comments>
		<pubDate>Tue, 20 Dec 2011 05:16:21 +0000</pubDate>
		<dc:creator>dating online</dc:creator>
				<category><![CDATA[find a date]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[com dev]]></category>
		<category><![CDATA[mktime]]></category>
		<category><![CDATA[mysql database]]></category>
		<category><![CDATA[strtotime]]></category>

		<guid isPermaLink="false">http://www.the-dating-online.org/how-do-i-find-a-date-using-php-in-a-mysql-database.html</guid>
		<description><![CDATA[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&#8217;s say today is 12/17/11 and the next date listed is 1/3/12, which is 3 tuesday&#8217;s from now so I can&#8217;t do a strtotime(&#8216;next tuesday&#8217;). [...]]]></description>
			<content:encoded><![CDATA[<p>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&#8217;s say today is 12/17/11 and the next date listed is 1/3/12, which is 3 tuesday&#8217;s from now so I can&#8217;t do a strtotime(&#8216;next tuesday&#8217;).<br />
<br />This will get you started to get a list of the next 10 Tuesdays to then compare to your list.<br />
One you get your &quot;array  of Tuesdays&quot; 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.</p>
<p>$today = date(&quot;D&quot;);  // returns  Sun Mon Tue&#8230;..</p>
<p> echo &#8216;&lt;p&gt;Today &#8216;. $today;<br />
//Based on todays date, figure out how many days you need to add to make the next tuesdays</p>
<p>//ie if today = Sun, then you need to add 2 to get to tuesday<br />
$addToValue = 2;</p>
<p>$nextTues =     date(&#8216;m-d-Y&#8217;,mktime(0, 0, 0, date(&quot;m&quot;),date(&quot;d&quot;) + 2, date(&quot;Y&quot;)));      </p>
<p> echo &#8216;&lt;p&gt;The Next Tues &#8216;.$nextTues;<br />
//Then create an array of the next x number of tuesdays you need </p>
<p>$tuesArr = array(); // first tues<br />
$dateAdd=0;</p>
<p>for ($i=0; $i&lt;=70; $i+= 7){</p>
<p>    $dateAdd =   $dateAdd+ $add; // add week to this coming tues<br />
    $nextT =  mktime(0, 0, 0, date(&quot;m&quot;),date(&quot;d&quot;) +$i + $addToValue, date(&quot;Y&quot;)); </p>
<p>    // add to array<br />
    $tuesArr[] = date(&#8216;m-d-Y&#8217;,$nextT);<br />
}</p>
<p>//output list of tuesdays to see<br />
echo &#8216;&lt;pre&gt;&#8217;;<br />
echo &#8216;Array of Next 10 Tuesdays<br />
&#8216;;<br />
print_r($tuesArr);<br />
echo &#8216;&lt;/pre&gt;&#8217;;</p>
<p>// next step YOU will need  to compare your list to the array to find a match&#8230;.</p>
<p>You can see the output here:</p>
<p>http://www.freelancewebprogrammer.com/dev/tuescheck.php</p>
<p>&copy;2012 <a href="http://www.the-dating-online.org">Dating Online</a>. All Rights Reserved.</p>.

<em>If you like this post, be sure to subscribe to <a href="http://www.the-dating-online.org/feed">my RSS feed</a>!</em>]]></content:encoded>
			<wfw:commentRss>http://www.the-dating-online.org/how-do-i-find-a-date-using-php-in-a-mysql-database.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How do I find out the passport appointment date once I submitted the passport online application?</title>
		<link>http://www.the-dating-online.org/how-do-i-find-out-the-passport-appointment-date-once-i-submitted-the-passport-online-application.html</link>
		<comments>http://www.the-dating-online.org/how-do-i-find-out-the-passport-appointment-date-once-i-submitted-the-passport-online-application.html#comments</comments>
		<pubDate>Tue, 13 Dec 2011 07:14:32 +0000</pubDate>
		<dc:creator>dating online</dc:creator>
				<category><![CDATA[find a date]]></category>
		<category><![CDATA[appointment]]></category>
		<category><![CDATA[jsp]]></category>
		<category><![CDATA[onlineregistration]]></category>
		<category><![CDATA[passport application form]]></category>
		<category><![CDATA[pms]]></category>

		<guid isPermaLink="false">http://www.the-dating-online.org/how-do-i-find-out-the-passport-appointment-date-once-i-submitted-the-passport-online-application.html</guid>
		<description><![CDATA[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&#8217;t printed on the passport application form that . How do I find the date of appointment? submit another time &#169;2012 Dating [...]]]></description>
			<content:encoded><![CDATA[<p>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&#8217;t printed on the passport application form that . How do I find the date of appointment?<br />
<br />submit another time</p>
<p>&copy;2012 <a href="http://www.the-dating-online.org">Dating Online</a>. All Rights Reserved.</p>.

<em>If you like this post, be sure to subscribe to <a href="http://www.the-dating-online.org/feed">my RSS feed</a>!</em>]]></content:encoded>
			<wfw:commentRss>http://www.the-dating-online.org/how-do-i-find-out-the-passport-appointment-date-once-i-submitted-the-passport-online-application.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>how do i find date of parents marraige?</title>
		<link>http://www.the-dating-online.org/how-do-i-find-date-of-parents-marraige.html</link>
		<comments>http://www.the-dating-online.org/how-do-i-find-date-of-parents-marraige.html#comments</comments>
		<pubDate>Fri, 02 Dec 2011 03:24:25 +0000</pubDate>
		<dc:creator>dating online</dc:creator>
				<category><![CDATA[find a date]]></category>
		<category><![CDATA[ancestry]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[marraige]]></category>
		<category><![CDATA[parents]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.the-dating-online.org/how-do-i-find-date-of-parents-marraige.html</guid>
		<description><![CDATA[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. &#169;2012 Dating Online. All Rights Reserved.. If you like this post, be sure to subscribe to my RSS feed!]]></description>
			<content:encoded><![CDATA[<p>I have narrowed it down to within 3 months via ancestry website but can i find exact date with out purchasing a certificate<br />
<br />Ask them.</p>
<p>&copy;2012 <a href="http://www.the-dating-online.org">Dating Online</a>. All Rights Reserved.</p>.

<em>If you like this post, be sure to subscribe to <a href="http://www.the-dating-online.org/feed">my RSS feed</a>!</em>]]></content:encoded>
			<wfw:commentRss>http://www.the-dating-online.org/how-do-i-find-date-of-parents-marraige.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How would I find an older man to date.?</title>
		<link>http://www.the-dating-online.org/how-would-i-find-an-older-man-to-date.html</link>
		<comments>http://www.the-dating-online.org/how-would-i-find-an-older-man-to-date.html#comments</comments>
		<pubDate>Fri, 09 Sep 2011 11:59:44 +0000</pubDate>
		<dc:creator>dating online</dc:creator>
				<category><![CDATA[find a date]]></category>
		<category><![CDATA[Dating Sites]]></category>
		<category><![CDATA[gray hair]]></category>
		<category><![CDATA[older man]]></category>
		<category><![CDATA[older men]]></category>
		<category><![CDATA[retirement home]]></category>

		<guid isPermaLink="false">http://www.the-dating-online.org/how-would-i-find-an-older-man-to-date.html</guid>
		<description><![CDATA[I&#8217;m 20 and I really want to date an older man 40+ with gray hair or just older. I&#8217;m not sure why i guess father issues maybe but i just find older men attractive and I want to date an older man to get it out of my system. But how should i go about [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m 20 and I really want to date an older man 40+ with gray hair or just older. I&#8217;m not sure why i guess father issues maybe but i just find older men attractive and I want to date an older man to get it out of my system. But how should i go about finding an older man to date?<br />
<br />Have you tried a retirement home or an AA RP meeting? I am jk. It should be pretty easy to find one being as you are very young and there are many old creeps out there who like them young. Perhaps online dating sites.</p>
<p>&copy;2012 <a href="http://www.the-dating-online.org">Dating Online</a>. All Rights Reserved.</p>.

<em>If you like this post, be sure to subscribe to <a href="http://www.the-dating-online.org/feed">my RSS feed</a>!</em>]]></content:encoded>
			<wfw:commentRss>http://www.the-dating-online.org/how-would-i-find-an-older-man-to-date.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>On a dirt bike, where do you find the month and date of manufacture?</title>
		<link>http://www.the-dating-online.org/on-a-dirt-bike-where-do-you-find-the-month-and-date-of-manufacture.html</link>
		<comments>http://www.the-dating-online.org/on-a-dirt-bike-where-do-you-find-the-month-and-date-of-manufacture.html#comments</comments>
		<pubDate>Thu, 01 Sep 2011 20:00:52 +0000</pubDate>
		<dc:creator>dating online</dc:creator>
				<category><![CDATA[find a date]]></category>
		<category><![CDATA[dirt bike]]></category>
		<category><![CDATA[kawasaki dealer]]></category>
		<category><![CDATA[kawasaki klx 110]]></category>
		<category><![CDATA[safety regulations]]></category>
		<category><![CDATA[serial number]]></category>

		<guid isPermaLink="false">http://www.the-dating-online.org/on-a-dirt-bike-where-do-you-find-the-month-and-date-of-manufacture.html</guid>
		<description><![CDATA[I have a Kawasaki KLX 110 dirt bike and I am trying to find the date of manufacture on it. I also need to find the sticker that states it is in compliance with US safety regulations. Where do you find these on the bike? call your local kawasaki dealer and give them the serial [...]]]></description>
			<content:encoded><![CDATA[<p>I have a Kawasaki KLX 110 dirt bike and I am trying to find the date of manufacture on it. I also need to find the sticker that states it is in compliance with US safety regulations. Where do you find these on the bike?<br />
<br />call your local kawasaki dealer and give them the serial number they will be able to tell you what you need to know. the bike is in compliance with all US safety regs or it would not have been sold here.</p>
<p>&copy;2012 <a href="http://www.the-dating-online.org">Dating Online</a>. All Rights Reserved.</p>.

<em>If you like this post, be sure to subscribe to <a href="http://www.the-dating-online.org/feed">my RSS feed</a>!</em>]]></content:encoded>
			<wfw:commentRss>http://www.the-dating-online.org/on-a-dirt-bike-where-do-you-find-the-month-and-date-of-manufacture.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Survey: What is the best place to find a date?</title>
		<link>http://www.the-dating-online.org/survey-what-is-the-best-place-to-find-a-date.html</link>
		<comments>http://www.the-dating-online.org/survey-what-is-the-best-place-to-find-a-date.html#comments</comments>
		<pubDate>Mon, 22 Aug 2011 12:48:47 +0000</pubDate>
		<dc:creator>dating online</dc:creator>
				<category><![CDATA[find a date]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[good question]]></category>
		<category><![CDATA[place]]></category>
		<category><![CDATA[question]]></category>
		<category><![CDATA[Survey]]></category>

		<guid isPermaLink="false">http://www.the-dating-online.org/survey-what-is-the-best-place-to-find-a-date.html</guid>
		<description><![CDATA[good question do not know &#169;2012 Dating Online. All Rights Reserved.. If you like this post, be sure to subscribe to my RSS feed!]]></description>
			<content:encoded><![CDATA[<p>
<br />good question do not know</p>
<p>&copy;2012 <a href="http://www.the-dating-online.org">Dating Online</a>. All Rights Reserved.</p>.

<em>If you like this post, be sure to subscribe to <a href="http://www.the-dating-online.org/feed">my RSS feed</a>!</em>]]></content:encoded>
			<wfw:commentRss>http://www.the-dating-online.org/survey-what-is-the-best-place-to-find-a-date.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>im single and im looking for a teenage dating websites 18 and under where can i find them?</title>
		<link>http://www.the-dating-online.org/im-single-and-im-looking-for-a-teenage-dating-websites-18-and-under-where-can-i-find-them.html</link>
		<comments>http://www.the-dating-online.org/im-single-and-im-looking-for-a-teenage-dating-websites-18-and-under-where-can-i-find-them.html#comments</comments>
		<pubDate>Sat, 06 Aug 2011 00:21:49 +0000</pubDate>
		<dc:creator>dating online</dc:creator>
				<category><![CDATA[find a date]]></category>
		<category><![CDATA[Dating Websites]]></category>
		<category><![CDATA[Girlfriend]]></category>
		<category><![CDATA[jersey boy]]></category>
		<category><![CDATA[teen age]]></category>
		<category><![CDATA[teenage dating]]></category>

		<guid isPermaLink="false">http://www.the-dating-online.org/im-single-and-im-looking-for-a-teenage-dating-websites-18-and-under-where-can-i-find-them.html</guid>
		<description><![CDATA[im a 17 south jersey boy looking for a teen age dating website so i can find a girlfriend any sources will help Don&#8217;t look online. Get out there dude! Any girl you find on the internet will never be worth it. I know. 17 girl. &#169;2012 Dating Online. All Rights Reserved.. If you like [...]]]></description>
			<content:encoded><![CDATA[<p>im a 17 south jersey boy looking for a teen age dating website so i can find a girlfriend any sources will help<br />
<br />Don&#8217;t look online. Get out there dude! Any girl you find on the internet will never be worth it. I know. </p>
<p>17 girl.</p>
<p>&copy;2012 <a href="http://www.the-dating-online.org">Dating Online</a>. All Rights Reserved.</p>.

<em>If you like this post, be sure to subscribe to <a href="http://www.the-dating-online.org/feed">my RSS feed</a>!</em>]]></content:encoded>
			<wfw:commentRss>http://www.the-dating-online.org/im-single-and-im-looking-for-a-teenage-dating-websites-18-and-under-where-can-i-find-them.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Will I ever find love, or at least a date?</title>
		<link>http://www.the-dating-online.org/will-i-ever-find-love-or-at-least-a-date.html</link>
		<comments>http://www.the-dating-online.org/will-i-ever-find-love-or-at-least-a-date.html#comments</comments>
		<pubDate>Fri, 29 Jul 2011 08:02:44 +0000</pubDate>
		<dc:creator>dating online</dc:creator>
				<category><![CDATA[find a date]]></category>
		<category><![CDATA[dogs]]></category>
		<category><![CDATA[Heart]]></category>
		<category><![CDATA[no worries]]></category>
		<category><![CDATA[will i ever find love]]></category>
		<category><![CDATA[year]]></category>

		<guid isPermaLink="false">http://www.the-dating-online.org/will-i-ever-find-love-or-at-least-a-date.html</guid>
		<description><![CDATA[I&#8217;ve never had a boyfriend or a date, which breaks my heart because i am nice and kind to anyone i meet. I am sort of introverted so, putting myself &#34;out there&#34; is a problem and i will be going off to college next year so it will be even harder. idk, maybe i will [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve never had a boyfriend or a date, which breaks my heart because i am nice and kind to anyone i meet. I am sort of introverted so, putting myself &quot;out there&quot; is a problem and i will be going off to college next year so it will be even harder. idk, maybe i will be lonely for life..ahh well. at least i will have my dogs to comfort me <img src='http://www.the-dating-online.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<br />College will help you find a date, no worries.  And I&#8217;m sure you will find love eventually.  Don&#8217;t try to rush it&#8230;just let it happen.</p>
<p>&copy;2012 <a href="http://www.the-dating-online.org">Dating Online</a>. All Rights Reserved.</p>.

<em>If you like this post, be sure to subscribe to <a href="http://www.the-dating-online.org/feed">my RSS feed</a>!</em>]]></content:encoded>
			<wfw:commentRss>http://www.the-dating-online.org/will-i-ever-find-love-or-at-least-a-date.html/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Where exactly do you find the expiration date on a Graco Double-stroller / carseat combination?</title>
		<link>http://www.the-dating-online.org/where-exactly-do-you-find-the-expiration-date-on-a-graco-double-stroller-carseat-combination.html</link>
		<comments>http://www.the-dating-online.org/where-exactly-do-you-find-the-expiration-date-on-a-graco-double-stroller-carseat-combination.html#comments</comments>
		<pubDate>Fri, 08 Jul 2011 07:04:12 +0000</pubDate>
		<dc:creator>dating online</dc:creator>
				<category><![CDATA[find a date]]></category>
		<category><![CDATA[carrier]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[Double-stroller]]></category>
		<category><![CDATA[expiration date]]></category>
		<category><![CDATA[graco double stroller]]></category>

		<guid isPermaLink="false">http://www.the-dating-online.org/where-exactly-do-you-find-the-expiration-date-on-a-graco-double-stroller-carseat-combination.html</guid>
		<description><![CDATA[Usually on the base or on the carrier itself near the bottom once you&#8217;ve detached it from the base. &#169;2012 Dating Online. All Rights Reserved.. If you like this post, be sure to subscribe to my RSS feed!]]></description>
			<content:encoded><![CDATA[<p>
<br />Usually on the base or on the carrier itself near the bottom once you&#8217;ve detached it from the base.</p>
<p>&copy;2012 <a href="http://www.the-dating-online.org">Dating Online</a>. All Rights Reserved.</p>.

<em>If you like this post, be sure to subscribe to <a href="http://www.the-dating-online.org/feed">my RSS feed</a>!</em>]]></content:encoded>
			<wfw:commentRss>http://www.the-dating-online.org/where-exactly-do-you-find-the-expiration-date-on-a-graco-double-stroller-carseat-combination.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>how can i cancel a closing date for selling my home?</title>
		<link>http://www.the-dating-online.org/how-can-i-cancel-a-closing-date-for-selling-my-home.html</link>
		<comments>http://www.the-dating-online.org/how-can-i-cancel-a-closing-date-for-selling-my-home.html#comments</comments>
		<pubDate>Sat, 18 Jun 2011 05:12:52 +0000</pubDate>
		<dc:creator>dating online</dc:creator>
				<category><![CDATA[find a date]]></category>

		<guid isPermaLink="false">http://www.the-dating-online.org/how-can-i-cancel-a-closing-date-for-selling-my-home.html</guid>
		<description><![CDATA[i signed a closing date to sell my home but i need to stay on and extend my closing date until i find a place to stay. Get in touch with your realtor. They should be able to draw up paperwork asking for an extension on your closing. &#169;2012 Dating Online. All Rights Reserved.. If [...]]]></description>
			<content:encoded><![CDATA[<p>i signed a closing date to sell my home but i need to stay on and extend my closing date until i find a place to stay.<br />
<br />Get in touch with your realtor.  They should be able to draw up paperwork asking for an extension on your closing.</p>
<p>&copy;2012 <a href="http://www.the-dating-online.org">Dating Online</a>. All Rights Reserved.</p>.

<em>If you like this post, be sure to subscribe to <a href="http://www.the-dating-online.org/feed">my RSS feed</a>!</em>]]></content:encoded>
			<wfw:commentRss>http://www.the-dating-online.org/how-can-i-cancel-a-closing-date-for-selling-my-home.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

