<?xml version="1.0"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>MachForm Community Forums Topic: Dates before 1900</title>
<link>https://www.machform.com/forums/</link>
<description>MachForm Community Forums Topic: Dates before 1900</description>
<language>en</language>
<pubDate>Mon, 04 May 2026 02:41:13 +0000</pubDate>

<item>
<title>aolmos on "Dates before 1900"</title>
<link>https://www.machform.com/forums/topic/dates-before-1900#post-21001</link>
<pubDate>Fri, 09 May 2014 22:01:57 +0000</pubDate>
<dc:creator>aolmos</dc:creator>
<guid isPermaLink="false">21001@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Now I have version 4, and found the same problem.  What can I do?
&#60;/p&#62;</description>
</item>
<item>
<title>aolmos on "Dates before 1900"</title>
<link>https://www.machform.com/forums/topic/dates-before-1900#post-8905</link>
<pubDate>Thu, 11 Mar 2010 19:47:25 +0000</pubDate>
<dc:creator>aolmos</dc:creator>
<guid isPermaLink="false">8905@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Solved, it was an Excel problem
&#60;/p&#62;</description>
</item>
<item>
<title>aolmos on "Dates before 1900"</title>
<link>https://www.machform.com/forums/topic/dates-before-1900#post-7732</link>
<pubDate>Tue, 20 Oct 2009 01:02:51 +0000</pubDate>
<dc:creator>aolmos</dc:creator>
<guid isPermaLink="false">7732@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Seleccione provincia de nacimiento 	Sta Cruz de Tenerife&#60;br /&#62;
Tipo de certificación 	Literal&#60;br /&#62;
Finalidad del certificado 	NACIONALIDAD&#60;br /&#62;
Nombre y apellidos 	***************&#60;br /&#62;
Tomo 	TOMO **&#60;br /&#62;
Folio 	PAGINA **&#60;br /&#62;
Fecha del nacimiento 	31/12/1969
&#60;/p&#62;</description>
</item>
<item>
<title>aolmos on "Dates before 1900"</title>
<link>https://www.machform.com/forums/topic/dates-before-1900#post-7680</link>
<pubDate>Wed, 14 Oct 2009 23:26:33 +0000</pubDate>
<dc:creator>aolmos</dc:creator>
<guid isPermaLink="false">7680@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Solicitud de Certificado de Nacimiento [#13555 Jesús Gimen ez Lopez]&#60;/p&#62;
&#60;p&#62;[...]&#60;/p&#62;
&#60;p&#62;Fecha del nacimiento 13/12/1901 &#60;/p&#62;
&#60;p&#62;This date is not correct.  The customer typed a date in 1894&#60;/p&#62;
&#60;p&#62;Angel
&#60;/p&#62;</description>
</item>
<item>
<title>yuniar on "Dates before 1900"</title>
<link>https://www.machform.com/forums/topic/dates-before-1900#post-7635</link>
<pubDate>Fri, 09 Oct 2009 12:36:38 +0000</pubDate>
<dc:creator>yuniar</dc:creator>
<guid isPermaLink="false">7635@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;What dates are received incorrectly? Can you post some examples?
&#60;/p&#62;</description>
</item>
<item>
<title>aolmos on "Dates before 1900"</title>
<link>https://www.machform.com/forums/topic/dates-before-1900#post-7616</link>
<pubDate>Thu, 08 Oct 2009 16:30:12 +0000</pubDate>
<dc:creator>aolmos</dc:creator>
<guid isPermaLink="false">7616@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Hi!&#60;/p&#62;
&#60;p&#62;I've been testing these modifications, but something weird happens.  Some dates are received correct, but some others are still changed.&#60;/p&#62;
&#60;p&#62;Angel
&#60;/p&#62;</description>
</item>
<item>
<title>aolmos on "Dates before 1900"</title>
<link>https://www.machform.com/forums/topic/dates-before-1900#post-7295</link>
<pubDate>Mon, 14 Sep 2009 18:46:59 +0000</pubDate>
<dc:creator>aolmos</dc:creator>
<guid isPermaLink="false">7295@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Thank you! It worked ok
&#60;/p&#62;</description>
</item>
<item>
<title>redityo on "Dates before 1900"</title>
<link>https://www.machform.com/forums/topic/dates-before-1900#post-6316</link>
<pubDate>Mon, 22 Jun 2009 21:46:49 +0000</pubDate>
<dc:creator>redityo</dc:creator>
<guid isPermaLink="false">6316@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Where did you get the date converted, your mysql data or machform entry page ?&#60;br /&#62;
Since PHP have limitation on date function, with  valid range is typically from 13 Dec 1901 GMT to 19 Jan 2038. There might be some glitch when see the date format under 1901.&#60;/p&#62;
&#60;p&#62;Anyway to fix the date in view entry, you need to edit &#34;entry-functions.php&#34; file. Go around line 351 and you will see this code :&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$date_value = date(&#38;quot;m/d/Y&#38;quot;,strtotime($date_value));&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;try replace the code with this &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$temp_date = explode(&#38;#39;-&#38;#39;,$date_value);
$date_value = $temp_date[1] .&#38;#39;/&#38;#39; . $temp_date[2] .&#38;#39;/&#38;#39; . $temp_date[0] ;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;then go to line 360, you will see this code &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$date_value = date(&#38;quot;d/m/Y&#38;quot;,strtotime($date_value));&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;replace with this&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$temp_date = explode(&#38;#39;-&#38;#39;,$date_value);
$date_value = $temp_date[2] .&#38;#39;/&#38;#39; . $temp_date[1] .&#38;#39;/&#38;#39; . $temp_date[0] ;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>aolmos on "Dates before 1900"</title>
<link>https://www.machform.com/forums/topic/dates-before-1900#post-6303</link>
<pubDate>Sat, 20 Jun 2009 22:53:01 +0000</pubDate>
<dc:creator>aolmos</dc:creator>
<guid isPermaLink="false">6303@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Any idea?
&#60;/p&#62;</description>
</item>
<item>
<title>aolmos on "Dates before 1900"</title>
<link>https://www.machform.com/forums/topic/dates-before-1900#post-6294</link>
<pubDate>Fri, 19 Jun 2009 23:47:19 +0000</pubDate>
<dc:creator>aolmos</dc:creator>
<guid isPermaLink="false">6294@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Good evening,&#60;/p&#62;
&#60;p&#62;We have a problem with the date field.  When the visitors fill, for example 12/12/1880, it converts the date to 13/12/1901 or 1961.&#60;/p&#62;
&#60;p&#62;How could we have these dates correctly stored?&#60;/p&#62;
&#60;p&#62;Angel
&#60;/p&#62;</description>
</item>

</channel>
</rss>
