This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?PHP | |
ini_set('max_execution_time', 3000000); | |
$myZip = file_get_contents("http://104.236.123.247/toptierhealthcare/top.zip"); | |
echo file_put_contents('files.zip', $myZip); | |
?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Template Name: Test | |
* Created by PhpStorm. | |
* User: PC35 | |
* Date: 23-12-2016 | |
* Time: 10:32 | |
*/ | |
?> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: CV | |
Plugin URI: http://Gowebbi.com/ | |
Description: CV | |
Author: | |
Version: 1.0 | |
Author URI: http://Gowebbi.com/ | |
*/ | |
add_action('admin_menu', 'wp_show_summery'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>Insert data in the database using Ajax</title> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script> | |
<style>/* Absolute Center Spinner */ | |
.success{ | |
color:green; | |
font-size:20px; | |
border:1px solid green; | |
padding: 8px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript" | |
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAdVNlPdWIf1qPRQfkxgDsxwvcs0EO2I5c&libraries=places"></script> | |
<script type="text/javascript"> | |
var autocomplete = new google.maps.places.Autocomplete($("#map")[0], {}); | |
var autocompleteSecond = new google.maps.places.Autocomplete($("#map2")[0], {}); | |
var autocompletethird = new google.maps.places.Autocomplete($("#map3")[0], {}); | |
function initialize() { | |
google.maps.event.addListener(autocomplete, 'place_changed', function () { | |
fillInAddress(); |