PHP: Find maximum odd number of sequence in an array

This is php program that finds the maximum odd number of sequence in an array. By editing, in case of even number also be found out. Code: [php] <?php $x = array(1,7,4,5,7,5,6,3,4,6,87,53,45,567,45,43,66,56,57,5); $tot = count($x); $y = $res = array(); $y[0] = array(); $k = $j = 0; for($i = 0; $i $val) if($max ==… Continue reading PHP: Find maximum odd number of sequence in an array

A little trick to store data into mysql database from a large form

Sometimes we feel boring to write mysql insertion query to store data into database from a large form where are too many input fields (such as about 50 fields). We face problem to handle all the fields, sometimes we miss the field name. Here is a small trick to store data from such a large… Continue reading A little trick to store data into mysql database from a large form