AddThis

Share |

Sunday, July 4, 2010

message.php


message in php


message.php





<?php
echo "Welcome ! U have to login for continue.";
echo "<br/>";
echo "<a href='userLogin.php'>Login</a>";
?>

signup_action.php


signup_action.php




<?php
include("connect.php");
//variable define
$userName=$_REQUEST['userName'];
$userEmail=$_REQUEST['userEmail'];
$userPassword1=$_POST['userPassword1'];
$userPassword2=$_POST['userPassword2'];
$password=md5($userPassword1);

// .......................Email validation.................


function isValidEmail($userEmail)
{
$pattern = "^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*
(\.[a-z]{2,3})$";
if (eregi($pattern, $userEmail))
{
return true;
}
else
{
return false;
}
}

// .......................Error Message.....................
//start error message
$error=false;
$errorMessage="";

if(empty($userName))
{
$error=true;
$userNameError=true;
$errorMessage.="Please provide username.</br>";
}
if(empty($userEmail))
{
$error=true;
$userEmailError=true;
$errorMessage.="Please provide email.</br>";
}
if($userPassword1=="")
{
$error=true;
$userPassword1Error=true;
$errorMessage.="Please provide password.</br>";
}

/*if($userPassword1)
{
if(preg_match("/^.*(?=.{8,})(?=.*[a-z]+)(?=.*[^A-Za-z0-9])
(?=.*[0-9\.\-\@\#\$\&]).*$/",$userPassword1))
{
$successMessage.= "Successfuly checked your password.
U have to login now";
}
{
$error=true;
$paswordValidationError=true;
$errorMessage.= "Please Enter"."<br />"."Atleast 8 character"."
<br/>"."Alpha numeric value"."<br />"."1 Special character";
}
}
*/
if($userPassword1!=$userPassword2)
{
$error=true;
$passwordMatchingError=true;
$errorMessage.="Password does not match.</br>";

}


if(!isValidEmail($userEmail))
{
$error=true;
$emailValidationError=true;
$errorMessage.="Invalid email id.</br>";
}
//end error message

//start insert data
if($error)
{
include("index.php");
}
else
{
$sql="insert into sign_up
(
userName,
userEmail,
password

)
values

(
'$userName',
'$userEmail',
'$password'
)
";


$result=mysql_query($sql);
if($sql)
{
echo "Successfully inserted";

//end insert data
?>

<script language="javascript">
window.location="message.php";
</script>
<?php
}
}
?>

Index.php (signup form)


<?php
if(isset($error) && $error==true )
{
?>
<div align="center" style="border:1px solid #F00;
background-color:#FFF2FF; width:300px;;">
<?php
echo $errorMessage;
?>
</div>
<?php
}
?>

<!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>Registration Form</title>
</head>

<body>
<center>
<form name="userRegistration" action="registration_action.php"
method="post">
<table>
<tr>
<div style="text-align:center; font-size:24px;
color: #3366FF;">Registration Form</div>
</tr>
<br/>
<tr>
<td>User Name:</td>
<td><input name="userName" type="text"
value="<?php if(isset($_POST['userName'])) echo $_POST['userName']; ?>"/>*</td>
</tr>
<tr>
<td>Email Address:</td>
<td><input name="userEmail" type="text"
value="<?php if(isset($_POST['userEmail'])) echo $_POST['userEmail']; ?>"/>*</td>
</tr>
<tr>
<td>Password:</td>
<td><input name="userPassword1"
type="password" value=""/>*</td>
</tr>
<tr>
<td>Confirm Password:</td>
<td><input name="userPassword2"
type="password" value=""/>*</td>
</tr>

<tr>
<td align="right"><input name="submit"
type="submit" value="Submit"/></td>
<td><input name="reset" type="reset"
value="Reset"/></td>
</tr>

</table>
</form>
</center>
</body>
</html>

Wednesday, June 30, 2010

IDB-BISEW Scholarship (Round-9)

IDB-BISEW Scholarship (Round-9)

IDB-BISEW Scholarship (Round-9)

Undergraduate & Postgraduate Level

Requirement: Should have minimum 2nd division or GPA 2.25 at SSC and HSC. Only Graduate/Masters/Diploma Engineer (Civil/Architecture) candidates may apply.

Application Deadline: 07-08-2008

Facility: The selected candidates will be trained on any of the following diploma courses: Enterprise Systems Analysis & Design-C#.Net (450 Hours) for Graduate/Fazil, Enterprise Systems Analysis & Design-VB.Net (450 Hours) for Graduate/Fazil, Enterprise Application Development with J2EE-C#.Net (470 Hours) for Graduate/Fazil, Database Design & Development (420 Hours) for Graduate/Fazil, Web-presence Solutions & Implementations (440 Hours) for Graduate/Fazil, Networking Technologies (440 Hours) for Graduate/Fazil, Computer Assisted Animation (400 Hours) for Graduate/Fazil, Architectural & Civil CAD (370 Hours) for Diploma Engineering in Civil/Architecture. Monthly allowance Tk 2,000.

Apply Procedure: Application forms and instructions can be obtained from any branch of Islami Bank Bangladesh Ltd. by paying Tk. 100 (nonrefundable). Application form must be posted through Post Office (NOT by courier) to GPO box.

Selection Procedure: The list of selected candidates for written exam will be published in the Daily Ittefaq on 22 August. This list will also be available at IDB-BISEW website. Applicants skill on Math and English will be tested by written exam (MCQ type)

Special Note:

* Medical, Engineering, Agriculture or Computer Science graduates are not allowed to apply.
* Candidates who are in study during course should not apply.
* Candidates who are in job and participators of previous round course are not allowed.
* This scholarship is only available for under privileged muslim candidates.
* Writen test subject Math,English. Question type MCQ.

Wednesday, June 23, 2010

Add-on Tools Link

Wednesday, June 2, 2010

Sitemap:What are Sitemaps?

Sitemaps are an easy way for webmasters to inform search engines about pages on their sites that are available for crawling. In its simplest form, a Sitemap is an XML file that lists URLs for a site along with additional metadata about each URL (when it was last updated, how often it usually changes, and how important it is, relative to other URLs in the site) so that search engines can more intelligently crawl the site.

Sunday, May 23, 2010

Google's Search Engine Optimization Starter Guide