Posts

Showing posts from March, 2016

Create Google map With pagination and Particular Place Type

<!DOCTYPE html> <html> <head>     <meta name = "viewport" content = "initial-scale=1.0, user-scalable=no" >     <meta charset = "utf-8" >     <title> Places Searchbox </title>     <style>         html,         body {             height : 100% ;             margin : 0 ;             padding : 0 ;         }               #map {             height : 100% ;         }               .controls {             margin-top : 10px ;             border : 1px solid transparent ;             border-radius : 2px 0 0 2px ;   ...

Upload Multiple File in Php using Javascript

Result.php  <form>                 <div class = " form-group Row " >                     <label for = " ReportResult " class = " col-sm-2 form-control-label " > Report Result File: </ label >                     <div class = "col-sm-6" >                         <input type = "file" class = "form-control-file" name = "reportfile[]" id = "reportfile"     accept = "image/*,application/pdf" multiple >                     </div>                 </div>                 <div class = "form-group Row" >                     <labe...