How to make a tablet pc from an old laptop | Link To How : How To Articles By Expert TechnoGeeks


How to make a tablet pc from an old laptop | Link To How : How To Articles By Expert TechnoGeeks

Easy way part 3


In this project i used an old Fujitsu Siemens life book S series laptop. It has got a 1 Ghz processor and 256 Mb ram, (not sure about the graphic card but i know its between 8-32 Mb). 


In this instructable i will show how to do tablet pc the easy way(and the cheapest) , and how to do it hard way (including "touch" screen etc).


Read More

How to UNLOCK E162G IDEA NETSETTER | Link To How : How To Articles By Expert TechnoGeeks

How to UNLOCK E162G IDEA NETSETTER | Link To How : How To Articles By Expert TechnoGeeks


STEP - 1


STEP -2
  • Insert the Idea netsetter and Install mobile partner.
  • Open Mobile Partner.
  • TOOLS ---> DIAGNOSTICS



Read More >>
Read More

Some Myths About Google Adsense Need To Know EveryOne

In this article I discuss 6 common myths about Google Adsense that will help you get real about placing Adsense on your Blogger blog.
Google Adsense Myths Every Blogspot Bloggers Needs to Know
There are a number of myths about Google Adsense which can lead new bloggers in particular into believing that they need only slap a few Google Ad units on their blog and they will become instant millionaires. The reality can be a lot different especially when you consider that 95% of all blogs receive less than 1000 visitors per day. Adding Google Adsense to your blog can generate some income but there is a need to be realistic. Here are 6 myths about Google Adsense that every blogger needs to know:

Myth 1. Google Adsense is a Get Rich Quick Scheme

Google Adsense is A Get Rich Quick Scheme
False. Only a small percentage of bloggers actually make a living from their blog. It is definitely possible to make some money from Google Adsense Ad units but bear in mind that making money from your blog is commensurate with many factors such as types of advertising, placement of advertising, quality of your content, regular posting, number of articles, SEO, backlinks to your site, number of visitors to your blog to name just a few. The more articles you write, the more posts indexed in search engines like Google and Yahoo which may lead to increased traffic but not necessarily. The bottom line is that for your ads to be effective your blog needs to receive traffic so concentrate your efforts in this area and make sure that your blog is worth visiting once your visitors get there.
Do Your Sums
As Google Adsense itself says it is difficult to predict earnings however there are some general pointers to guide you. For instance if your blog receives 100 visits per day your likely revenue from Google is probably about 10 cents per day assuming that 1 in 100 people click on some form of Google advertising on your site and the page CTR is about 0.20%. Over a year that equates to about $36.50. Not a fortune in anyone's book. Likewise if your blog is fortunate enough to receive 1000 visitors per day you are looking at an annual income from Google Adsense of $365.00.
100 Visitors per day = Earnings $36.50 per year

1000 Visitors per day = Earnings $365.00 per year

5000 Visitors per day = Earnings $1825.00 per year

10000 Visitors per day = Earnings $3650.00 per year
The above figures are an optimistic view. I have not allowed for the fact that many of your visitors will be repeats so the likelihood of a repeat visitor clicking on an ad unit is less than for that of a new visitor. On this basis your earnings could be much less.

Google Adsense and Affiliate Marketing
About 95% of Bloggers would have less than 1000 visitors to their blog a day. If your blog is in this category then Google Adsense alone will not allow you to quit your job and become a full-time blogger. You will need to display other forms of advertising on your blog as well before your blog will start to pay. Check out my article on other forms of advertising that may be suitable for your Blogger blog including displaying Affiliate Marketing banners.

Affiliate marketing banners can work as a form of advertising. Consider that if 1 site visitor in 100 actually buys something worth $50.00 you will immediately earn $5.00 assuming you receive 10% of the sale as a commission. Even if only one in 500 clicks through to the merchant and buys something you will still be ahead of the revenue earned from Google ads for the same number of visitors. $5.00 from Affiliate Marketing versus 50 cents from Google Adsense. In many ways Affiliate Marketing is a more profitable marketing strategy than having heaps of Google ads on your blog. However, in my experience a good mix of both is the way to go.

Read Full Articles : Click Here

Read More

How to create Login System with php


Create a simple login system with php + mysql script,
Follow these following steps:
Overview
In this tutorial, we create 3 php files for testing our code.
1. main_login.php
2. checklogin.php
3. login_success.php

Steps
1. Create table "members" in database "test".
2. Create file main_login.php.
3. Create file checklogin.php.
4. Create file login_success.php.
5. Create file logout.php

If you don't know how to create database, click here
STEP1: Create table "members"
For testing this code, we need to create database "test" and create table "members".

login form with php
CREATE TABLE 'members' (
'id' int(4) NOT NULL auto_increment,
'username' varchar(65) NOT NULL default '',
'password' varchar(65) NOT NULL default '',
PRIMARY KEY ('id')
) TYPE=MyISAM AUTO_INCREMENT=2 ;
-- 
-- Dumping data for table 'members'
--
INSERT INTO `members` VALUES (1, 'john', '1234');


STEP2: Create file main_login.php
The first file we need to create is "main_login.php" which is a login form.

Member login in PHP
Add caption
############### Code
<table width="300" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#CCCCCC">
<tr>
<form name="form1" method="post" action="checklogin.php">
<td>
<table width="100%" border="0" cellpadding="3" cellspacing="1" bgcolor="#FFFFFF">
<tr>
<td colspan="3"><strong>Member Login </strong></td>
</tr>
<tr>
<td width="78">Username</td>
<td width="6">:</td>
<td width="294"><input name="myusername" type="text" id="myusername"></td>
</tr>
<tr>
<td>Password</td>
<td>:</td>
<td><input name="mypassword" type="text" id="mypassword"></td>
</tr>
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td><input type="submit" name="Submit" value="Login"></td>
</tr>
</table>
</td>
</form>
</tr>
</table>


STEP3: Create file checklogin.php
We have a login form in step 2, when a user submit their username and password, PHP code in checklogin.php will check that this user exist in our database or not.

If user has the right username and password, then the code will register username and password in the session and redirect to "login_success.php". If username or password is wrong the system will show "Wrong Username or Password".

############### Code

<?php


$host="localhost"; // Host name 
$username=""; // Mysql username 
$password=""; // Mysql password 
$db_name="test"; // Database name 
$tbl_name="members"; // Table name 


// Connect to server and select databse.
mysql_connect("$host", "$username", "$password")or die("cannot connect"); 
mysql_select_db("$db_name")or die("cannot select DB");


// username and password sent from form 
$myusername=$_POST['myusername']; 
$mypassword=$_POST['mypassword']; 


// To protect MySQL injection (more detail about MySQL injection)
$myusername = stripslashes($myusername);
$mypassword = stripslashes($mypassword);
$myusername = mysql_real_escape_string($myusername);
$mypassword = mysql_real_escape_string($mypassword);
$sql="SELECT * FROM $tbl_name WHERE username='$myusername' and password='$mypassword'";
$result=mysql_query($sql);


// Mysql_num_row is counting table row
$count=mysql_num_rows($result);


// If result matched $myusername and $mypassword, table row must be 1 row
if($count==1){


// Register $myusername, $mypassword and redirect to file "login_success.php"
session_register("myusername");
session_register("mypassword"); 
header("location:login_success.php");
}
else {
echo "Wrong Username or Password";
}
?>
STEP4: Create file login_success.php
User can't view this page if the session is not registered.

############### Code


// Check if session is not registered, redirect back to main page. 
// Put this code in first line of web page. 
<?php
session_start();
if(!session_is_registered(myusername)){
header("location:main_login.php");
}
?>


<html>
<body>
Login Successful
</body>
</html>

STEP5: Create file Logout.php
If you want to logout, create this file. The code in this file will destroy the session.

// Put this code in first line of web page. 
<?php 
session_start();
session_destroy();
?>


For PHP5 User - checklogin.php
############### Code


<?php


ob_start();
$host="localhost"; // Host name 
$username=""; // Mysql username 
$password=""; // Mysql password 
$db_name="test"; // Database name 
$tbl_name="members"; // Table name 


// Connect to server and select databse.
mysql_connect("$host", "$username", "$password")or die("cannot connect"); 
mysql_select_db("$db_name")or die("cannot select DB");


// Define $myusername and $mypassword 
$myusername=$_POST['myusername']; 
$mypassword=$_POST['mypassword']; 


// To protect MySQL injection (more detail about MySQL injection)
$myusername = stripslashes($myusername);
$mypassword = stripslashes($mypassword);
$myusername = mysql_real_escape_string($myusername);
$mypassword = mysql_real_escape_string($mypassword);
$sql="SELECT * FROM $tbl_name WHERE username='$myusername' and password='$mypassword'";
$result=mysql_query($sql);


// Mysql_num_row is counting table row
$count=mysql_num_rows($result);


// If result matched $myusername and $mypassword, table row must be 1 row
if($count==1){


// Register $myusername, $mypassword and redirect to file "login_success.php"
session_register("myusername");
session_register("mypassword"); 
header("location:login_success.php");
}
else {
echo "Wrong Username or Password";
}
ob_end_flush();
?>


Encrypting Password - Make your Login More Secure

Encrypt password for Login form in PHP

Using md5(); function to make your login system more secure.
Syntax
$password="123456";
md5($password);

Use md5(); to encrypts password to make it more secure
Overview
Look at these two databases, it's the same person and same info, the first one we don't encrypt his password, but the second one we encrypted his password.

When you encryte "john856" using this code, you'll see the result
"ad65d5054042fda44ba3fdc97cee80c6"

This is not a random result, everytime you encrypt the same password you will get the same result.

$password="john856";
$encrypt_password=md5($password);
echo $encrypt_password; 

Example - Login

This is an example Login with encrypted password, but don't forget to encrypt password and insert into database when your user sign up.

// username and password sent from form 
$myusername=$_POST['myusername']; 
$mypassword=$_POST['mypassword']; 


// encrypt password 
$encrypted_mypassword=md5($mypassword);
$sql="SELECT * FROM $tbl_name WHERE username='$myusername' and password='$encrypted_mypassword'";
$result=mysql_query($sql);

Thats it. Enjoy php.

Read More