Posts

Showing posts from July, 2013

Birthdate validation for less than 18 in PHP

Here is the code to validate for birthdate, //Validate for users below 18 only function birthdate($then, $min) {   // $then will first be a string-date   $then = strtotime($then);   //The age to be less than 18   $min = strtotime('+18 years', $then);    if(time() < $min)   {      return false;   }   else {      return true;   } }

ul li for 4 partition

Code:    {assign var="productByLine" value = "4"}    {assign var="productLineTurn" value = "1"}    {assign var="tr" value = "true"}    {assign var="turns" value = "1"}        <table style="border: 1px solid #CCC;">       {foreach from=$upcomingEvent item=product name=products}                    <!-- Start a new line -->          {if $tr eq "true"}             <tr>             {assign var="productLineTurn" value = "1"}             {assign var="tr" value = "false"}          {/if}              ...