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 ;             box-sizing : border-box ;             -moz-box-sizing : border-box ;             height : 32px ;             outline : none ;             box-shadow : 0 2px 6px rgba(0, 0, 0, 0.3) ;         }               #pac-input {             background-color : #fff ;             font-family : Roboto;             font-size : 15px ;             font-weight : 300

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" >                     <label for = "remark" class= "col-sm-2 form-control-label" > Remark: </label>                     <div class = "col-sm-6" >                         <textarea class = "form-control" id="remark" ></textarea>