Featured Post Today
print this page
Latest Post

3D Colorful Email Template Design

3D design Email Template

Colors: Red, Light Green, Blue

designed this for users to attract more users to your money site. This Email is designed for new freelancing site. 3D Radial Gradient effect is used in this template. You can use it for email marketing. I have used it before.

 <!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>User Login Detail: SameeArticles.Blogspot.com</title>  
 </head>  
 <body>  
 <div style="background:#232323; alignment-adjust:central; padding:0; height:600; border:0; width:auto;">  
      <div style="height:30px; width:auto; padding:5; margin:0px 20px;">  
        <div style="margin:5px 0px; width:250; float:left; color:#FFF;">  
          <b>Tell:</b> +44-000-111-2222  
     </div>  
     <div style="margin:5px 0px; width:250; float:right; color:#FFF;">  
          <b>Email:</b> demo@sameearticles.blogspot.com  
     </div>  
   </div>  
   <div style="height:50px; margin:0px 20px; padding:20px; background-color:#F00">  
   <span style="font-size:36px; font-family:Georgia, 'Times New Roman', Times, serif; color:#00F;">People</span> <span style="font-size:36px; font-family:Georgia, 'Times New Roman', Times, serif; color:#690;">Freelancers</span>  
   </div>  
   <div style="background : radial-gradient(circle, #00F, #000) repeat scroll 0 0 transparent; padding:20px; margin:10px 20px; color:#FFF;">  
   <!-- Radial Gradient : https://sameearticles.blogspot.com/2014/01/how-to-add-radial-gradient-as-circle.html-->  
     <h1 style="color:#3F0;">Your Login Detail:</h1>  
     <p>Hello ##username##,</p>  
     <p>Welcome to PeopleFreelancers.com</p>  
     <p><strong>Your Username:</strong> ##username##</p>  
     <p><strong>Your Password:</strong> ##user_password##</p>  
     <p><strong>Login here:</strong> ##site_login_url##</p>  
     <p>Thank you,</p>  
     <h2><span style="font-family:Georgia, 'Times New Roman', Times, serif; color:#00F;">People</span> <span style="font-family:Georgia, 'Times New Roman', Times, serif; color:#690;">Freelancer Team</span></h2>  
   </div>  
   <div style="padding:5px 10px; margin:10px 20px; margin-bottom:10px; background:#0C0;">  
   <p align="center">  
        You have received this email because you have subscribed to QWC.Me as ##User_email##  
   </p>  
   <h3 align="center">Copyright &copy; 2016 Samee Articles</h3>  
     <span style="text-decoration:none; font-size:8px; color:#090;">Email Designed by : <a href="https://sameearticles.blogspot.com/">Samee Articles</a><span>  
   </div>  
   <div style="clear:both;">&nbsp;</div>  
 </div>  
 </body>  
 </html>  

Check My Email Marketing Results. Read Email Marketing Secrets


Contact Me:
Samee Ullah Feroz
(Web Analyst)
Skype: Samee2cool
0 comments

MySQL Error : Unknown column 'id' in 'where clause' error in PHP

Sometime you get MySQL Error like
Error Number: 1052

Column 'id' in order clause is ambiguous
This is just because of some misunderstanding about MySQL queries. This error occurs, when you try to search same column, which exists in two tables. For it, you need to write proper query that you can use in MySQL.
Try to follow some rules........
  1. When you write any query, must sure that you have checked that in PHPMyAdmin > SQL
  2. If you need to use variables in MySQL query, Try to use concatenation for that variable like:
     $query = "select * from users where name = " . $username[2];  
    
  3. Try to avoid special characters in MySQL query.
  4. Try to use updated PHP5.5.x functions. 
  5. Make sure that your order sequence is correct.
  6. Again must check that every query is working correct in Local Host.
  7. Try to take attention on "Order by", "Limit", "Rand", "Atoms" functions
  8. Use mysql_real_escape_string() function with variables to avoid hacking.
0 comments

How to retrieve user data from URL?

How to retrieve user data from URL?

like you click on a username and url is
domain.com/?user=samee
now you can get data from it

like query will be
select * from users where user = samee limit 1
It will by query

now how to start

in header before <html> you need to write code

 $username = $_GET['user']; //now you have username variable  
 $query = "select * from users where user = $username limit 1";  
 $query_run = mysqli_query($con, $query);  
 $user = mysqli_fetch_array($query_run);  
 //here you will get complete user data and now you need to put on page  
 <html>  
  <head>  
  </head>  
 <body>  
  <p>Name = <?php echo $user[name]; ?></p>  
  <p>age = <?php echo $user[age]; ?></p>  
  <p>Address = <?php echo $user[address]; ?></p>  
  </body>  
 </html>  

0 comments

Blogging Platforms List : Complete dropdown list code

Blog Platforms
Blog Platforms
There are about 28 platforms for blogging. In which blogger and wordpress are at top. About more than 75% people are familiar with both of them. But you also should know about other platforms. Google supports all of them. Blogging platforms list is given below with code. Try it.

 <html lang="us-en" xml:lang="us-en">   
   <head>   
           <style>   
                .form{   
                     margin:10px auto;   
                }   
                .form label, select{   
                     display:inline-block;   
                     float:left;   
                }   
                .form label{   
                     width:150px;   
                }   
                .body{   
                     width:400px;   
                     height:50px;   
                     background-color:#C33;   
                     padding:20 20 20 20;   
                     margin:300px auto;   
                }   
     </style>   
   </head>   
   <body>   
     <div class="body">   
       <form class="form">   
         <div><label for="blogplatforms"><b>Blog Platforms:</b></label></div>   
         <div>  
         <select name="Blog Platforms" id="blogplatforms" size="1">  
           <option label="[Select Blog Platform]" value="" selected="selected">[Select Blog Platform]</option>  
           <option label="b2evolution" value="b2evolution">b2evolution</option>  
           <option label="Blogger/BlogSpot" value="Blogger/BlogSpot">Blogger/BlogSpot</option>  
           <option label="Drupal" value="Drupal">Drupal</option>  
           <option label="Dotclear" value="Dotclear">Dotclear</option>  
           <option label="Eggblog" value="Eggblog">Eggblog</option>  
           <option label="ExpressionEngine" value="ExpressionEngine">ExpressionEngine</option>  
           <option label="FlatPress" value="FlatPress">FlatPress</option>  
           <option label="Geeklog" value="Geeklog">Geeklog</option>  
           <option label="Joomla" value="Joomla">Joomla</option>  
           <option label="LifeType" value="LifeType">LifeType</option>  
           <option label="LiveJournal" value="LiveJournal">LiveJournal</option>  
           <option label="Loudblog" value="Loudblog">Loudblog</option>  
           <option label="Mambo" value="Mambo">Mambo</option>  
           <option label="MovableType" value="MovableType">MovableType</option>  
           <option label="Nucleus" value="Nucleus">Nucleus</option>  
           <option label="pMachine" value="pMachine">pMachine</option>  
           <option label="Posterous" value="Posterous">Posterous</option>  
           <option label="sBlog" value="sBlog">sBlog</option>  
           <option label="Serendipity" value="Serendipity">Serendipity</option>  
           <option label="SimplePHPBlog" value="SimplePHPBlog">SimplePHPBlog</option>  
           <option label="Simplog" value="Simplog">Simplog</option>  
           <option label="Text Pattern" value="Text Pattern">Text Pattern</option>  
           <option label="TypePad" value="TypePad">TypePad</option>  
           <option label="Tumblr" value="Tumblr">Tumblr</option>  
           <option label="WB News" value="WB News">WB News</option>  
           <option label="Wheatblog" value="Wheatblog">Wheatblog</option>  
           <option label="WordPress" value="WordPress">WordPress</option>  
           <option label="Xanga" value="Xanga">Xanga</option>  
           <option label="Zomplog" value="Zomplog">Zomplog</option>  
           <option label="Other Blog Platform" value="Other Blog Platform">Other Blog Platform</option>  
         </select>   
         </div>   
       </form>   
     </div>   
   </body>   
 </html>  

This list can help you whenever you will be offline.
Get country list code here.
0 comments

Domain Language Redirection by IP or users

English And Arabic Conversion
English And Arabic Conversion
I am working on one site. that is in Arabic + English.
I want. when people come on site with english keyword they redirect to
domain.com/en/
and when people come on site with arabic keyword they redirect to
domain.com/ar/

We need to work according to Google Language Code.

domain.com will redirect to domain.com/ar fully Arabic language for Arabic people

How to do it.
4 comments

How to add radial and linear gradients with CSS3

radial gradient
How to add radial and linear gradient as circle with CSS.
Use bellow code it can help you like given image.
Some other beautiful Gradient functions are available. Like
  1. Radial-Gradient()
  2. Linear-Gradient()
  3. Repeating-Radial-Gradient()
  4. Repeating-Linear-Gradient()

Radial Gradient

 body{  
 background : radial-gradient(circle, #3E3E3E, #000) repeat scroll 0 0 transparent;  
 }  

Updated

Linear Gradient

 body{  
 background-image: linear-gradient(to bottom, #026CC4, #095A9B);  
 }  
Must share your views
0 comments
 
Copyright © 2011-2026. Samee Articles - All Rights Reserved
Proudly powered by Blogger