<a href="https://console.cloud.google.com/apis/credentials">Get Your Api Credentials Here</a> <a href="https://calendar.google.com/calendar">Get your Calender ID</a> <?php include_once("wp-load.php"); function get_calender_events() { $params = array(); /*Get current date*/ $current_date = date('Y-m-d H:i:s'); /*Convert it to google calendar's rfc_format */ $rfc_format = date("c", strtotime($current_date)); $params[] = 'orderBy=startTime'; $params[] ='maxResults=100'; $params[] = 'timeMin='.urlencode($rfc_format); $url_param = ''; foreach($params as $param) { $url_param.= '&'.$param; } $calender_id = "calender_id"; $client_key = "client_key"; $url = "https://www.googleapis.com/calendar/v3/calendars/".$calender_id."/events?key=".$client_key."&singleEvents=true".$url_param; $list_events = wp_remote_post($url, ...
<script src="js/jquery.js"></script>
<input type="text" class="friendsearch" onkeyup="searchFriends(this)" placeholder="Search" style="border-radius:4px;width:300px;height:30px;"/>
<?php
mysql_connect("localhost","root","");
mysql_select_db("test");
$data=mysql_query("select name,alpha_2 from countries");
while($rec=mysql_fetch_row($data)){
$cbid="chk".$cid;
$cid++;
if($count%2==0)
$color="lightblue";
else
$color="silver";
$count++;
$a=str_replace(' ','',$rec[0]);
echo "<div class='allfriends' fname=\"$a\" style='background-color:$color;'>";
echo "<span><img src=\"flags/$rec[1].png\" width=\"30px\"></span><span>$rec[0]</span>";
echo "</div>";
}
?>
<div id="div1"></div>
<script>
function searchFriends(){
var keyword=$(".friendsearch").val();
console.log(keyword);
keyword = keyword.replace(/\s/g, '');
console.log(keyword);
if(keyword == ''){
$('.allfriends').show();
}else{
$('.allfriends').each(function(){
var fname = $(this).attr('fname');
var nfname=fname.toLowerCase();
var n=nfname.indexOf(""+keyword+"");
if(n >=0){
$(this).show();
}else{
$(this).hide();
$("#div1").html("No Result Found......");
}
});
}
}
</script>
<input type="text" class="friendsearch" onkeyup="searchFriends(this)" placeholder="Search" style="border-radius:4px;width:300px;height:30px;"/>
<?php
mysql_connect("localhost","root","");
mysql_select_db("test");
$data=mysql_query("select name,alpha_2 from countries");
while($rec=mysql_fetch_row($data)){
$cbid="chk".$cid;
$cid++;
if($count%2==0)
$color="lightblue";
else
$color="silver";
$count++;
$a=str_replace(' ','',$rec[0]);
echo "<div class='allfriends' fname=\"$a\" style='background-color:$color;'>";
echo "<span><img src=\"flags/$rec[1].png\" width=\"30px\"></span><span>$rec[0]</span>";
echo "</div>";
}
?>
<div id="div1"></div>
<script>
function searchFriends(){
var keyword=$(".friendsearch").val();
console.log(keyword);
keyword = keyword.replace(/\s/g, '');
console.log(keyword);
if(keyword == ''){
$('.allfriends').show();
}else{
$('.allfriends').each(function(){
var fname = $(this).attr('fname');
var nfname=fname.toLowerCase();
var n=nfname.indexOf(""+keyword+"");
if(n >=0){
$(this).show();
}else{
$(this).hide();
$("#div1").html("No Result Found......");
}
});
}
}
</script>
Comments
Post a Comment