Tuesday, 11 October 2016

jquery auto scroll div content vertical

<html>
<head>
<script language="javascript">
ScrollRate = 100;

function scrollDiv_init() {
DivElmnt = document.getElementById('MyDivName');
ReachedMaxScroll = false;

DivElmnt.scrollTop = 0;
PreviousScrollTop  = 0;

ScrollInterval = setInterval('scrollDiv()', ScrollRate);
}

function scrollDiv() {

if (!ReachedMaxScroll) {
DivElmnt.scrollTop = PreviousScrollTop;
PreviousScrollTop++;

ReachedMaxScroll = DivElmnt.scrollTop >= (DivElmnt.scrollHeight - DivElmnt.offsetHeight);
}
else {
ReachedMaxScroll = (DivElmnt.scrollTop == 0)?false:true;

DivElmnt.scrollTop = PreviousScrollTop;
PreviousScrollTop--;
}
}

function pauseDiv() {
clearInterval(ScrollInterval);
}

function resumeDiv() {
PreviousScrollTop = DivElmnt.scrollTop;
ScrollInterval    = setInterval('scrollDiv()', ScrollRate);
}
</script>
</head>
<body onLoad="scrollDiv_init()">
<div id="MyDivName" style="overflow:auto;width:50%;height:20%" onMouseOver="pauseDiv()" onMouseOut="resumeDiv()">Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com Hemant Vishwakarma www.hemant9807.blogspot.com 
</div>
</body>
</html>


jquery auto scroll div content vertical

Wednesday, 5 October 2016

Get all days and date for a given month in php




HTML & PHP CODE

<!DOCTYPE html>
<html>
<body>

<?php
$list=array();
$month = 10;
$year = 2016;

for($d=1; $d<=31; $d++)
{
    $time=mktime(12, 0, 0, $month, $d, $year);          
    if (date('m', $time)==$month)       
        $list[]=date('Y-m-d-D', $time);
}
echo "<pre>";
print_r($list);
echo "</pre>";
?>

</body>
</html>

Get all days and date for a given month in php


Get the number of days in a month for a specified year and calendar in PHP


HTML

<!DOCTYPE html>
<html>
<body>

<?php
$d= cal_days_in_month(CAL_GREGORIAN,2,1965);
echo "There was $d days in February 1965.<br>";

$d= cal_days_in_month(CAL_GREGORIAN,2,2016);
echo "There was $d days in February 2016.";
?>


</body>
</html>

OUTPUT


There was 28 days in February 1965.
There was 29 days in February 2016.



Get the number of days in a month for a specified year and calendar in PHP