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
Month: April 2011
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
jSlider Plugin for jQuery (for 3 horizontal div)
This is my first jQuery plugin. Not so perfect, but it can be used I think This plugin is very easy to use. Doc: This is a small slider content plugin for three horizontal floated div. By clicking on top menu, the divs switch. 1. Just pass the master div id which is wrapping the… Continue reading jSlider Plugin for jQuery (for 3 horizontal div)