×

php up to date

Create tag for website using google tag manager

Create tag for website using google tag manager
var aax_size='728x90'; var aax_pubname = 'elbstore-21'; var aax_src='302'; Create tag for website using google tag manager (adsbygoogle = window.adsbygoogle || []).push({}); 1. Visit https://tagmanager.google.com/    After this you can get code to...

Custom robots header tags settings in blogger

Custom robots header tags settings in blogger
var aax_size='728x90'; var aax_pubname = 'elbstore-21'; var aax_src='302'; Custom robots header tags settings in blogger (adsbygoogle = window.adsbygoogle || []).push({}); It is very easy to handle these settings, you just need to follow these steps: Login...

Check IP Under spam listed or not using php

Check IP Under spam listed or not using php
Check IP Under spam listed or not using php (adsbygoogle = window.adsbygoogle || []).push({});   $host = "156.200.53.65";$rbl  = 'sbl-xbl.spamhaus.org';// valid query format is: 156.200.53.65.sbl-xbl.spamhaus.org$rev = array_reverse(explode('.', $host));$lookup = implode('.',...

Find whois domain

Find whois domain
Find whois domain    <?require("whoisClass.php");$whois=new Whois;$domain=$_POST['domain'];?> <form class="form-inline" method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>">                   ...

Remove Category from home page osclass

Remove Category from home page  osclass
Remove Category from home page  osclass   Open theme folder and edit functions.php file,  find out h1 tag with categories under div with class name row  remove from there  to closing tab of row div... that's all categories now removed from your home page completely.  Eg:  ...

Find WHOIS Domain

Find WHOIS Domain
Find WHOIS Domain <? require("whoisClass.php"); $whois=new Whois; echo $whois->whoislookup("google.com"); ?> Download WhoisClass.php From  http://99webtools/php-whois-script.p...

PHP Question And Answers

PHP Question And Answers
PHP Question And Answers 1. What is the importance of "action" attribute in a html form? ANS: The action attribute determines where to send the form-data in the form submission. 2. Distinguish between urlencode and urldecode? ANS: This method is best when encode a string to used in a query...

Allow or Deny Website Access using IP Address

Allow or Deny Website Access using IP Address
Allow  Website Access using One IP Address Restrict website access using .httacess file order deny,allowdeny from allallow from 112.221.323.443 Allow  Website Access Except Few IP Address order deny,allowdeny from 80.52.168.0/23deny from 181.138.10.153/32deny from 182.138.78.129/32 allow...

PHP File Upload

PHP File Upload
PHP File Upload into Folder <?php             $file_name= $_FILES['attachment']['name']; //Get Name Of the Uploaded File      $extension = end(explode('.', $file_name)); //Get The Extension     $imagearray=array('gif','png','jpg');   ...

Angular js contact form example

Angular js contact form example
var aax_size='728x90'; var aax_pubname = 'elbstore-21'; var aax_src='302';  Angular js contact form example (adsbygoogle = window.adsbygoogle || []).push({}); Before copy this code download angular js file and mention the path within the script. with...

Remove category from url

Remove category from url
Remove category from url wordpress  Method 1 .htaccess RewriteRule ^category/(.+)$ http://www.yourblog.com/$1 [R=301,L] Method 2 Using permalink Select post type custom    /%category%/%postname%/category base put dot(.) Method 3  Use plugin to solve this.  ...

Blog Template with post thumbnail

Blog Template with post thumbnail
Blog Template with post thumbnail <?php  /* Template Name: Blog */ ?> <?php get_header(); ?> <div id="container"> <div id="content" role="main"> <article> <?php // Display blog posts on any page @ http://m0n.co/l $temp = $wp_query; $wp_query=...

What is Angular Js? And Why we use it?

What is Angular Js? And Why we use it?
What is Angular Js? And Why we use it? Angular js is Javascript Framework ( the self-proclaimed “superheroic JavaScript framework” ).1. Unit Testing is ready2. Write less code3. Flexibility with filters4. Behaviour with directives5. Data models6. Mvc Architecture Next post we...

subcategory display in serach page

subcategory display in serach page
subcategory display in serach page osclass output function.php Add this code into functions.php to get subcategory list based on category selection and display into search.php if( !function_exists('get_subcategories') ) {          function get_subcategories(...