Thursday, 28 April 2016

Top SEO techniques of 2016

Top SEO techniques of 2016

You can get thousands of user to you website by following some simple rules. Google is used by more than 3 billion people in the world. Once your website pages start to rank highly in Google search than your revenue will increase quickly.
I am sharing some of the top SEO techniques with you.
  • Use social media (Facebook, twitter, Quora, Reddit, Pinterest)
  • Keep your percentage 3% in Keywords
  • Use images with proper alt attribute in it
  • Use Links in your Post
  • Use Webmaster tools
  • Submit your website for Site mapping
  • Use SEO plugins if you are using WordPress
  • Make your navigations clean in your website if you are applying for AdSense


Wednesday, 27 April 2016

Top SEO Tools List in 2016

Top SEO Tools List in 2016

Today, I am sharing some tools which can be beneficial for SEO. You can visit their official site and use it to improve your website traffic.


Name
Official Site
Buzzstream

AuthoritySpy

Citation Labs' Broken Link Finder
Check My Links
Content Marketer
Citation Labs' Link Prospector
Domain Hunter Plus
HARO (Help a Reporter Out)
Free Broken Link Checker
Inky Bee
Linkbird
Link Prospecting Query Builder
Linkody
Muck Rack
Linkstant
Ninja Outreach
Ontolo

Wednesday, 7 October 2015

How to upload a file in PHP using Xampp


1) Go to C:\xampp\htdocs and make a folder name it how_to_upload_file_in_php
2) Now make a file naming upload_form.php and paste the following code in it

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<form enctype="multipart/form-data" action="upload_file.php" method="POST">
Choose a file to upload: <input type="file" name="file" size="50" />
<input type="submit" value="Upload File" />
</form>
</body>
</html>

3) Now make a php file to upload the file upload_file.php and paste the following code

<?php
$targetfolder = "upload_folder/";
$targetfolder = $targetfolder . basename( $_FILES['file']['name']) ;
if(move_uploaded_file($_FILES['file']['tmp_name'], $targetfolder))
{
echo "The file ". basename( $_FILES['file']['name']). " is uploaded";
}
else {
echo "Error occured while uploading file";
}
?>

4) Now make a folder in your root directory where all the files will upload naming it upload_folder



Now run your code by this url: http://localhost/toturial_website/how_to_upload_file_in_php/upload_form.php

Your file will upload in the upload_folder. Please check it. Feel free to ask any query