saample allow pdf full screen
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<iframe id="viewer" src="http://mzl.la/pdf-js" mozallowfullscreen allowfullscreen></iframe><br>
<button onclick="fullScreen()">Full Screen</button>
<script>
function fullScreen() {
var viewer = document.getElementById('viewer');
var rFS = viewer.mozRequestFullScreen || viewer.webkitRequestFullscreen || viewer.requestFullscreen;
rFS.call(viewer);
}
</script>
</body>
</html>
Monday, March 20, 2017
Wednesday, March 15, 2017
Resolved The Net Framework 3.5 Update
Dism.exe /online /enable-feature /featurename:NetFX3 /source:C:\ /LimitAccess
copy the files in drice c
CMD Run AS Administrator
copy the files in drice c
CMD Run AS Administrator
Tuesday, March 14, 2017
css blinkng
<style type="text/css">
/* Blink for Webkit and others
(Chrome, Safari, Firefox, IE, ...)
*/
@-webkit-keyframes blinker {
from {opacity: 1.0;}
to {opacity: 0.0;}
}
.blink{
text-decoration: blink;
-webkit-animation-name: blinker;
-webkit-animation-duration: 0.6s;
-webkit-animation-iteration-count:infinite;
-webkit-animation-timing-function:ease-in-out;
-webkit-animation-direction: alternate;
}
</style>
Sample
<body>
<span class="blink">in 7 Second will return to Login Page </span>
/* Blink for Webkit and others
(Chrome, Safari, Firefox, IE, ...)
*/
@-webkit-keyframes blinker {
from {opacity: 1.0;}
to {opacity: 0.0;}
}
.blink{
text-decoration: blink;
-webkit-animation-name: blinker;
-webkit-animation-duration: 0.6s;
-webkit-animation-iteration-count:infinite;
-webkit-animation-timing-function:ease-in-out;
-webkit-animation-direction: alternate;
}
</style>
Sample
<body>
<span class="blink">in 7 Second will return to Login Page </span>
Wednesday, March 8, 2017
Xamp php myadmin server connect external lan ip
<LocationMatch "^/(?i:(?:xampp|security|licenses|phpmyadmin|webalizer|server-status|server-info))">
Allow from all
Require all granted
allow from 10.1.*.*
ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var
</LocationMatch>
Allow from all
Require all granted
allow from 10.1.*.*
ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var
</LocationMatch>
Tuesday, March 7, 2017
sELECT bY cATEGORY PHP MYSQL
<?php
$con = mysql_connect("localhost","root","");
if (!$con) {
die('Could not connect: ' . mysql_error());
}
mysql_select_db("archive", $con);
$result = mysql_query("select count(1) FROM archive WHERE Category='REPORT'");
$row = mysql_fetch_array($result);
$total = $row[0];
echo "Total Data: " . $total;
mysql_close($con);
?>
http://www.kavoir.com/2010/05/simplest-php-hit-counter-or-download-counter-count-the-number-of-times-of-access-visits-or-downloads.html
Sample Display Count php mysql
<?php
$con = mysql_connect("localhost","root","");
if (!$con) {
die('Could not connect: ' . mysql_error());
}
mysql_select_db("archive", $con);
$result = mysql_query("select count(1) FROM archive");
$row = mysql_fetch_array($result);
$total = $row[0];
echo "Total Data: " . $total;
mysql_close($con);
?>
Subscribe to:
Posts (Atom)
phprunner view custom filed status
if ($value=="Process") $str.='<img src="1.png">'; if ($value=="Receive") $str.='<i...
-
< html > < body > < table > < tr >< td >Text to Save:</ td ></ tr > < tr ...
-
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Simple Modal Popup using JavaScript ...
-
http://www.asprunner.com/forums/topic/22786-sending-record-data-via-sms-twilio/