Monday, March 20, 2017

sample allow pdf full screen

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>

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


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>

Wednesday, March 8, 2017

ODBC Driver 5.3

ODBC 5.3...  32 Bit

ODBC 5.3...  64 Bit

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>

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);
?>

phprunner view custom filed status

if ($value=="Process") $str.='<img src="1.png">'; if ($value=="Receive") $str.='<i...