Friday, November 22, 2013

Seo odesk and elance coverletter

Hi Good day,

I had read your job description.I am a SEO/Link Building  professional and expert.
I would like to share and offer my skills and ability for any SEO project. I am an experience link builder provider and I can assure you I can be a good help/asset in promoting your websites rank on Google/yahoo search engines as well as bringing traffic to your website. The method I am going to use is the white hat SEO technique, so it would be easy accepted in search engines. It is a manual submission, permanent and definitely not spam.

Seo and data entry cover letter

Hello,
I have experience in website data entry other task easily and having ability to give back to you fine results.  I always prefer part time jobs. I have good history on oDesk. Hope so you will hire me for this position for better results. Looking forward to work with you.

I am mostly on GTalk or Skype. We can talk about there in a fast way, if you are fascinated.

Thanks,
Your name

Data entry coverletter

Hello,
I have experience in website data entry other task easily and having ability to give back to you fine results.  I always prefer part time jobs. I have good history on oDesk. Hope so you will hire me for this position for better results. Looking forward to work with you. Also I want to long term relationship.

I am mostly on GTalk or Skype. We can talk about there in a fast way, if you are fascinated.

Thanks,
Your name

Cover letter PSD to HTML and PSD to WordPress

Dear Sir,
I am very interested in your project. Sir 5 years experience in PSD website template designing, PSD to HTML conversion, PSD to WordPress conversion, WordPress theme designing, WordPress theme development, PHP development, MySQL database development.

Add comments to a program

A comment is a note to yourself that you put into your source code. All comments are ignored by the compiler. They exist solely for your benefit. Comments are used primarily to document the meaning and purpose of your source code, so that you scan remember later how it functions and how to use it,

In C, the start of a comment is signaled by the /* character pair. a comment is ended by */ for example , this is a syntactically correct C comment: /*This is a comment*/

Wordpress membershipsite plugins Magic Members


Magic Members is a premium Wordpress membership plugin which has a lot of powerful features which include unlimited membership levels, flexible membership options, unlimited coupon creation, entire blog protection, member management and download management. There is payment integrations which allows your members to pay with PayPal Standard, 2CheckOut, CCBill, Authorize.net, ClickBank, WorldPay, MoneyBookers, AlertPay and many others.
Magic Members 

wordpress membership site plugins Buddy Press

BuddyPress lets you build a social network for your company, school, sports team or niche community all based on the power and flexibility of WordPress. It lets users register on your site and start creating profiles, posting messages, making connections, creating and interacting in groups and much more.

Buddy Press

Wordpress Automatic Backlink Creator Plugin

 The Automatic Backlink Creator plugin helps you create backlinks to your blog effortlessly. The plugin gets your articles with anchor text links displayed in the ABC network. Collectively, the members of the network will then be helping each other create backlinks for each otherautomatically. In addition, your site gets indexed and pinged daily.
Automatic Backlink Creator Plugin

Wordpress plugins SEO Title Tag

SEO Title Tag makes is dead-easy to optimize the title tags across your WordPress-powered blog or website. Not just your posts, not just your home page, but any and every title tag on your site!
SEO Title Tag

Best worpdress plugins for seo Yoast WordPress SEO

Yoast WordPress SEO is the most  comprehensive SEO plugin available for WordPress. The plugin is far superior to the Platinum SEO Pack as it incorporates most of the features of that plugin and other plugins, and does a better job.  It also incorporates RSS Feed, Breadcrumb Management (advanced usage), and it replaces the Google XML Sitemap plugin by managing XML Sitemaps right from the plugin.
Yoast WordPress SEO 

Wordpress Platinum SEO Pack plugins

Platinum SEO Plugin is the ultimate wordpress SEO solution. You can add index, noindex, follow or nofollow, noodp, noydirmeta tags to any post or page. This plugin automates SEO for your Wordpress blogs.
Wordpress Platinum SEO Pack

wordpress security plugins WP Security Scan

WP Security Scan checks your WordPress website/blog for security vulnerabilities and suggests corrective actions to ensure your passwords, file permissions and database are secure. It ensures your WordPress admin is secure as well.


WP Security Scan 

wordpress seo plugins SEOPressor

This Wordpress SEO is an SEO plugin and tool that will take care of optimizing on-page factors and give your websites the advantage to rank high in the search engines. It helps you analyse title, H1,H2 and H3 tages, keyword density and content length, exact placement of your keyword and so much more. SEOPressor comes highly recommended by SEO experts as it intelligently optimizes your website to rank high on the search engines.

SEOPressor 

wordpress plugins Subscribe to Comments

Subscribe to Comments is a robust plugin that enables commentators to sign up for e-mail notification of subsequent comments left for the post. The plugin includes a full-featured subscription manager that your commentators can use to unsubscribe to certain posts, block all notifications, or even change their notification e-mail address!

Download Link


Download worpdress plugins WP-SpamFree Anti Spam

This is a powerful anti-spam plugin for WordPress that eliminates comment spam, including trackback and pingback spam. It works invisibly without CAPTCHA’s, or causing any form of inconvenience to your site visitors. The plugin includes spam-free contact form feature as well.
WP-SpamFree

WordPress Auto-Translator Plugin

This is a Wordpress auto translation plugin that uses IP address technology. Once installed, the plugin can translate all Wordpress pages including widgets. It is a Google Translator API based and supports 50 languages which include Italian, Korean, Chinese, Portuguese,   German, French, Spanish, Japanese, Hebrew, Indonesian and many more.
Download link
WordPress Auto-Translator Plugin 

Wordpress best plugins for fonts Google Web Fonts for WordPress

Google Fonts Pro is a premium WordPress plugin that allows you to instantly access over 200 of Google’s Web Fonts with power and ease. You can take full control over the font and typography used on your site in a matter of minutes!
Download Here,

Web Fonts for WordPress

Best wordpress plugins for contact form.

Contact Form 7 can manage multiple contact forms, plus you can customize the form and the mail contents flexibly with simple mark up. The form supports Ajax-powered submitting, CAPTCHA, Akismet spam filtering and so on.
Download Here :
Contact Form 7

wordpress ecommerce plugins Shopp

Shopp is an e-commerce plugin that adds a feature-rich online store to your WordPress-powered website or blog. Get your store up and running in minutes. Then, take it to the next level with the flexibility of Shopp’s customization tools that allow production studios and power users to tailor every aspect of the shopping experience.
 Download here:
Shopp

Wordpress Ecommerce plugins

eShop is an accessible shopping cart plugin for WordPress. It is packed with various features, including basic statistics, sales data, various payment options, various methods to list products,  basic stock control and various discount options. Most importantly, it can be linked with multiple merchant gateways including Authorize.net, Paypal, Payson, eProcessingNetwork, Webtopay, iDEAL and Cash/Cheque!

Download here :
eShop

Thursday, November 21, 2013

PHP email functions

<?php

if (!isset($_POST['email'])) {

?>
<form action="<?= $_SERVER['PHP_SELF'] ?>" method="post">
Enter your email address: <input type="text" name="email" value="<?= isset($_COOKIE['email'])?$_COOKIE['email']:"enter email"; ?>">
<input type="submit" name="submit"> <br />
<small>Last saved on: <?= isset($_COOKIE['lastsave'])?date('d-m-Y h:i:s a', $_COOKIE['lastsave']):"last save not known"; ?></small>
</form>
<?php
 } else {

    if (!empty($_POST['email'])) {
        setcookie("email", $_POST['email'], mktime() + (86400 * 30), "/");
        setcookie("lastsave", time(), mktime() + (86400 * 30), "/");
        //setcookie("lastsave", time(), mktime() - 3600, "/");

        echo "Your email address has been recorded.";
    } else {
        echo "ERROR: Please enter your email address!";
    }
}


?>

CSS nice menu

HTML Code :
<!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>CSS Menu Maker Installation Instructions</title>

<style type="text/css">
   body{padding:20px; font-size:14px; color:#000000; font-family:Arial, Helvetica, sans-serif;}
   h2 {font-weight:bold; color:#000099; margin:10px 0px; }
   p span {color:#006600; font-weight:bold; }
   a, a:link, a:visited {color:#0000FF;}
   textarea {width: 100%; padding: 10px; margin: 10px 0 15px 0; font-size: 13px; font-family: Consolas,monospace;}
   textarea.html {height: 300px;}
   p {margin: 0 0 10px 0;}
   code, pre {font-family: Consolas,monospace; color: green;}
   ol li {margin: 0 0 15px 0;}
</style>

</head>

<body>

<h2>Your Menu</h2>

<div id='cssmenu'>
<ul>
   <li><a href='#'><span>Home</span></a></li>
   <li class='has-sub '><a href='#'><span>Products</span></a>
      <ul>
         <li class='has-sub '><a href='#'><span>Product 1</span></a>
            <ul>
               <li><a href='#'><span>Sub Product</span></a></li>
               <li><a href='#'><span>Sub Product</span></a></li>
            </ul>
         </li>
         <li class='has-sub '><a href='#'><span>Product 2</span></a>
            <ul>
               <li><a href='#'><span>Sub Product</span></a></li>
               <li><a href='#'><span>Sub Product</span></a></li>
            </ul>
         </li>
      </ul>
   </li>
   <li><a href='#'><span>About</span></a></li>
   <li><a href='#'><span>Contact</span></a></li>
</ul>
</div>
<div style="clear:both; margin: 0 0 30px 0;">&nbsp;</div>

<h2>Installation Instructions</h2>

<ol>
   <li>Upload the <code>menu_assets</code> folder to the root directory of your website. This is usually where your <code>index.html</code> file is.</li>
   <li>Copy and paste the code below somewhere between the <code>&lt;head>&lt;/head></code> tags.<textarea class='css'><link href="/menu_assets/styles.css" rel="stylesheet" type="text/css"></textarea></li>
   <li>Copy and paste the html below where ever you want your menu to show up.<textarea class='html'><div id='cssmenu'>
<ul>
   <li><a href='#'><span>Home</span></a></li>
   <li class='has-sub '><a href='#'><span>Products</span></a>
      <ul>
         <li class='has-sub '><a href='#'><span>Product 1</span></a>
            <ul>
               <li><a href='#'><span>Sub Product</span></a></li>
               <li><a href='#'><span>Sub Product</span></a></li>
            </ul>
         </li>
         <li class='has-sub '><a href='#'><span>Product 2</span></a>
            <ul>
               <li><a href='#'><span>Sub Product</span></a></li>
               <li><a href='#'><span>Sub Product</span></a></li>
            </ul>
         </li>
      </ul>
   </li>
   <li><a href='#'><span>About</span></a></li>
   <li><a href='#'><span>Contact</span></a></li>
</ul>
</div></textarea></li>
</ol>

<h2>Notes</h2>
<ol>
   <li>If you run into a problem getting your menu to work or have suggestions for the site please <a href='http://cssmenumaker.com/resources/contact'>Contact Us</a> and let us know. We will try to help as much as possible.</li>
</ol>

</body>
</html>

CSS Code :

<style type="text/css">#cssmenu ul,
#cssmenu li,
#cssmenu span,
#cssmenu a {
  margin: 0;
  padding: 0;
  position: relative;
}
#cssmenu {
  height: 49px;
  border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
  background: #141414;
  background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAxCAIAAACUDVRzAAAAA3NCSVQICAjb4U/gAAAALElEQVQImWMwMrJi+v//PxMDw3+m//8ZoPR/qBgDEhuXGLoeYswhXg8R5gAAdVpfoJ3dB5oAAAAASUVORK5CYII=) 100% 100%;
  background: -moz-linear-gradient(top, #32323a 0%, #141414 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #32323a), color-stop(100%, #141414));
  background: -webkit-linear-gradient(top, #32323a 0%, #141414 100%);
  background: -o-linear-gradient(top, #32323a 0%, #141414 100%);
  background: -ms-linear-gradient(top, #32323a 0%, #141414 100%);
  background: linear-gradient(to bottom, #32323a 0%, #141414 100%);
  border-bottom: 2px solid #0fa1e0;
}
#cssmenu:after,
#cssmenu ul:after {
  content: '';
  display: block;
  clear: both;
}
#cssmenu a {
  background: #141414;
  background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAxCAIAAACUDVRzAAAAA3NCSVQICAjb4U/gAAAALElEQVQImWMwMrJi+v//PxMDw3+m//8ZoPR/qBgDEhuXGLoeYswhXg8R5gAAdVpfoJ3dB5oAAAAASUVORK5CYII=) 100% 100%;
  background: -moz-linear-gradient(top, #32323a 0%, #141414 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #32323a), color-stop(100%, #141414));
  background: -webkit-linear-gradient(top, #32323a 0%, #141414 100%);
  background: -o-linear-gradient(top, #32323a 0%, #141414 100%);
  background: -ms-linear-gradient(top, #32323a 0%, #141414 100%);
  background: linear-gradient(to bottom, #32323a 0%, #141414 100%);
  color: #ffffff;
  display: inline-block;
  font-family: Helvetica, Arial, Verdana, sans-serif;
  font-size: 12px;
  line-height: 49px;
  padding: 0 20px;
  text-decoration: none;
}
#cssmenu ul {
  list-style: none;
}
#cssmenu > ul {
  float: left;
}
#cssmenu > ul > li {
  float: left;
}
#cssmenu > ul > li:hover:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  bottom: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #0fa1e0;
  margin-left: -10px;
}
#cssmenu > ul > li:first-child > a {
  border-radius: 5px 0 0 0;
  -moz-border-radius: 5px 0 0 0;
  -webkit-border-radius: 5px 0 0 0;
}
#cssmenu > ul > li:last-child > a {
  border-radius: 0 5px 0 0;
  -moz-border-radius: 0 5px 0 0;
  -webkit-border-radius: 0 5px 0 0;
}
#cssmenu > ul > li.active a {
  box-shadow: inset 0 0 3px #000000;
  -moz-box-shadow: inset 0 0 3px #000000;
  -webkit-box-shadow: inset 0 0 3px #000000;
  background: #070707;
  background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAxCAIAAACUDVRzAAAAA3NCSVQICAjb4U/gAAAALklEQVQImWNQU9Nh+v//PxMDw3+m//8ZkNj/mRgYIHxy5f//Z0BSi18e2TwS5QG4MGB54HL+mAAAAABJRU5ErkJggg==) 100% 100%;
  background: -moz-linear-gradient(top, #26262c 0%, #070707 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #26262c), color-stop(100%, #070707));
  background: -webkit-linear-gradient(top, #26262c 0%, #070707 100%);
  background: -o-linear-gradient(top, #26262c 0%, #070707 100%);
  background: -ms-linear-gradient(top, #26262c 0%, #070707 100%);
  background: linear-gradient(to bottom, #26262c 0%, #070707 100%);
}
#cssmenu > ul > li:hover > a {
  background: #070707;
  background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAxCAIAAACUDVRzAAAAA3NCSVQICAjb4U/gAAAALklEQVQImWNQU9Nh+v//PxMDw3+m//8ZkNj/mRgYIHxy5f//Z0BSi18e2TwS5QG4MGB54HL+mAAAAABJRU5ErkJggg==) 100% 100%;
  background: -moz-linear-gradient(top, #26262c 0%, #070707 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #26262c), color-stop(100%, #070707));
  background: -webkit-linear-gradient(top, #26262c 0%, #070707 100%);
  background: -o-linear-gradient(top, #26262c 0%, #070707 100%);
  background: -ms-linear-gradient(top, #26262c 0%, #070707 100%);
  background: linear-gradient(to bottom, #26262c 0%, #070707 100%);
  box-shadow: inset 0 0 3px #000000;
  -moz-box-shadow: inset 0 0 3px #000000;
  -webkit-box-shadow: inset 0 0 3px #000000;
}
#cssmenu .has-sub {
  z-index: 1;
}
#cssmenu .has-sub:hover > ul {
  display: block;
}
#cssmenu .has-sub ul {
  display: none;
  position: absolute;
  width: 200px;
  top: 100%;
  left: 0;
}
#cssmenu .has-sub ul li {
  *margin-bottom: -1px;
}
#cssmenu .has-sub ul li a {
  background: #0fa1e0;
  border-bottom: 1px dotted #6fc7ec;
  filter: none;
  font-size: 11px;
  display: block;
  line-height: 120%;
  padding: 10px;
}
#cssmenu .has-sub ul li:hover a {
  background: #0c7fb0;
}
#cssmenu .has-sub .has-sub:hover > ul {
  display: block;
}
#cssmenu .has-sub .has-sub ul {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
}
#cssmenu .has-sub .has-sub ul li a {
  background: #0c7fb0;
  border-bottom: 1px dotted #6db2d0;
}
#cssmenu .has-sub .has-sub ul li a:hover {
  background: #095c80;
}</style>

Website page mouse right click off

<script>
      function disableClick(){
        document.onclick=function(event){
          if (event.button == 2) {
            alert('Right Click Message');
            return false;
          }
        }
      }
    </script>

html input type text removing js code

<!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>Template</title>
   <script type="text/javascript">
      function focusMe(sender) {
         if (sender.value == sender.defaultValue) {
            sender.value = "";
            sender.style.color = "#000000";
         }
      }
      function blurMe(sender) {
         if (sender.value == "") {
            sender.value = sender.defaultValue;
            sender.style.color = "#C0C0C0";
         }
      }
   </script>
</head>
<body>
   <p><input type="text" style="color: #C0C0C0;" value="E-mail here" onfocus="focusMe(this);" onblur="blurMe(this);" /></p>
</body>
</html>

html and css simple menu

Html code :

<div style="width:800px; height:auto; margin:0 auto;">
<div style="width:800px;; margin:0 auto; background:#000;">
    <div id="mhover" style="float:left; height:50px; width:150px; text-align:center;"><a style="font-size:14px; line-height:50px; text-decoration:none; color:white;" href="#">HOME</a></div>
    <div id="mhover" style="float:left; height:50px; width:150px; text-align:center;"><a style="font-size:14px; line-height:50px; text-decoration:none; color:white;" href="#">PORTFOLIO</a></div>
    <div id="mhover" style="float:left; height:50px; width:150px; text-align:center;"><a style="font-size:14px; line-height:50px; text-decoration:none; color:white;" href="#">PROJECT</a></div>
    <div id="mhover" style="float:left; height:50px; width:150px; text-align:center;"><a style="font-size:14px; line-height:50px; text-decoration:none; color:white;" href="#">HIRE ME</a></div>
    <div id="mhover" style="float:left; width:200px; height:50px; text-align:center;"><a style="font-size:14px; line-height:50px; text-decoration:none; color:white;" href="#">SEO</a></div>
    <div style="clear:both;"></div>
</div>
</div>

CSS Code :

<style type="text/css">

#mhover a:hover
{
    color:#000 !important;
    display:block;
    line-height:50px;
    background-color:#F00;
}
</style>

Html contact form

<FORM action="mailto:#" method="post" enctype="text/plain">
<TABLE BORDER="0" CELLSPACING="0" CELLPADDING="4" WIDTH="90%">
<TR>
<TD width="30%"><DIV align="right">
<B>Name:</B>
</DIV>
</TD>
<TD width="70%">
<INPUT type="text" name="name" size="20">
    </TD>
    </TR>
    <TR>
    <TD><DIV align="right"><B>Email:</B></DIV>
    </TD>
    <TD>
    <INPUT type="text" name="email" size="20">
    </TD>
    </TR>
    <TR>
    <TD><DIV align="right">
    <B>Comment:</B>
    </DIV>
    </TD>
    <TD><TEXTAREA name="comment" cols="30" wrap="virtual" rows="4">
    </TEXTAREA>
    </TD></TR>
    <TR>
    <TD>&nbsp;</TD>
    <TD>
    <INPUT type="submit" name="submit" value="Submit">
    <INPUT type="reset" name="reset" value="Reset">
    </TD></TR>
    </TABLE>
    </FORM>

Result: 

Name:


Email:


Comment:



C fundamentals

The individual elements of a computer language such as C do not stand alone, but rather in conjunction with one another. Therefore, it is necessary to understand several key aspects of C before examining each  element of the language in details. To this end , this chapter presents a quick overview of the C language. Its goal is to give you sufficient working knowledge of C  so That you can understand the examples in later chapters.
As you work through this chapter, don't worry if a few points are not entirely clear. Than main thing you need to understand is how and why the example programs execute as they do. Keep in mind that most of the topics introduced in this chapter will be discussed in grater detail later in this book . In this chapter, you will learn about thee basic structure of a C program, what a C statement is, and what variables, constants, and functions are. you will learn how to display text on the screen and input information form the keyboard
To use this book to the fullest, you must have a computer, a C compiler, and text editor, in which case you won't need a separate on. For the best results, you should work along with the examples and try the exercises.