know yourselves. information, computer, 7 wonders, various.

Saturday, October 22, 2016

php_mysql_part6_Registration.php ফাইলকে Modify করা




Registration.php ফাইলকে Modify করা :
তো চলুন কোডিং আরেকটু মডিফাই করা যাক তবে এক্ষেত্রে Registration.form এবং  Registration.php ফাইল তৈরী করা ভাল। সেক্ষেত্রে <Form> ট্যাগের Action কী-ওয়ার্ডে পরের ফাইলটি দিতে হবে। আমরা পরবর্তীতে এভাবেও ফাইল তৈরী করে দেখাবো। আপাতত পরিবর্তন টুকু লক্ষ্য করা যাক। আমরা মূলত Field এর ডাটাগুলি চেক করবো এবং সঠিকভাবে পূরন হলে একটি Welcome ম্যাসেজ দিব আর যদি সঠিক না হয় তবে আবার Try করতে বলা হবে। দেখুন line No-48 এ নতুন একটি Variable নেওয়া হয়েছে $msg = “ ” ; নামে। বিভিন্ন ধরণের এই Variable -এ রাখা হবে। এবং পরে তা প্রর্দশন করা হবে। এরপর 57 লাইন থেকে ৩ লাইন কোডিং লেখা হয়েছে এভাবে-
if(empty($id)){
$msg .="Enter your id, ";
$status= "NOTOK";
}
দেখুন প্রথম লাইনে লেখা হয়েছে যদি id ফিল্ড ফাঁকা থাকে তবে ম্যাসেজ দিতে হবে Enter your id এবং Status বলা হচ্ছে NOT OK (ঠিক নাই) Line নং 62 থেকে একইভাবে Coding করা হয়েছে-
if(empty($name)){
$msg .="Enter your Name, ";
$status= "NOTOK";
}
অর্থাৎ name ফিল্ড ফাঁকা থাকলে Enter your name ম্যাসেজ দিবে। 66 নং line থেকে একইভাবে বলা হয়েছে email Field এ যদি @ . (ডট) ব্যবহার না করা হয়ে থাকে তবে ম্যাসেজ দিতে হবে Your email address is not correct বাকী টুকু আগের কোডিং।
if (!stristr($email,"@") OR !stristr($email,".")) {
Coading
<?php
$status = "OK";
$msg="";

$id=$_POST['id'];
$name=$_POST['name'];
$email=$_POST['email'];
$femail=$_POST['email'];
$password=$_POST['password'];
$address=$_POST["address"];

if(empty($id)){
$msg .="Enter your id, ";
$status= "NOTOK";
}

if(empty($name)){
$msg .="Enter your Name, ";
$status= "NOTOK";
}
if (!stristr($email,"@") OR !stristr($email,".")) {
 // checking your email @ and .
$msg .="Your email address is not correct<BR>";
$status= "NOTOK";}

শেষের দিকে echo তে যে Welcome বা Try again ম্যাসেজটি একটু পরিবর্তন করবো।
86 তম লাইনে echo “ <center> <font face = ‘verdana’ size =  ‘2’ color = green> Succeed , You are Welcome $name </font> </center>”;
অপর দিকে line নং 90 তে  echo “ <center> <font face = ‘verdina’ size =  ‘2’ color = ‘red’> $msg ‘ ’ </font> </center>”;
প্রথম echo তে ম্যাসেজের সাথে $name variable কে call করা হয়েছে এবং শেষ echo তে $msg variable কে call করা হয়েছে।
Registration.php ফাইলের সমসত্ম কোডিং
<?php
     include ("include/header.php");
?>
    
<div align="center">   
<b>Type Your information</b>
<form method="post" action="registration.php">
<table border="1">
  <tr>
    <td align="center">User Information Entry Form</td>
  </tr>
  <tr>
    <td>
      <table>     
          <tr>
          <td>Id</td>
          <td><input type="text" name="id" size="20"></td>
          </tr>
        <tr>
          <td>Name</td>
          <td><input type="text" name="name" size="20"></td>
        </tr>
          <tr>
          <td>email</td>
          <td><input type="text" name="email" size="25"></td>
        </tr>
          <tr>
          <td>password</td>
          <td><input type="text" name="password" size="20"></td>
        </tr>
          <tr>
          <td>Address</td>
          <td><input type="text" name="address" size="40"></td>
        </tr>
        <tr>
          <td></td>
          <td align="right"><input type="submit" name="submit" value="Sent"></td>
        </tr>
        </table>
      </td>
    </tr>
</table>
</form>
</div>

<?php
$status = "OK";
$msg="";

$id=$_POST['id'];
$name=$_POST['name'];
$email=$_POST['email'];
$femail=$_POST['email'];
$password=$_POST['password'];
$address=$_POST["address"];

if(empty($id)){
$msg .="Enter your id, ";
$status= "NOTOK";
}

if(empty($name)){
$msg .="Enter your Name, ";
$status= "NOTOK";
}
if (!stristr($email,"@") OR !stristr($email,".")) { // checking your email @ and .
$msg .="Your email address is not correct<BR>";
$status= "NOTOK";}

if($status=="OK"){
$con=mysql_connect("localhost","root","");
if(!$con)
{
die('could not connect:'.mysql_error());
}
mysql_select_db("mydata");
mysql_query("INSERT INTO  userinfo
              (id,name,email,password,address)
              VALUES
              ('$id',
              '$name',
              '$email',
              '$password',
              '$address')");
             
echo "<center><font face='Verdana' size='2' color=green>Succeed, You ate Welcome $name</font></center>";
}
else
{
echo "<b> Sorry. Try Again $name</b>";
echo "<center><font face='Verdana' size='2' color=red>$msg</font></center>";
}
?>

<span class="title">Registration</span><br />
Look! here is some link. Click to get related website <br />
Computer Learning Center is a sixteen-year old Educational Institute.  We offer basic computer training, in the form of our Career Enhancement Program (CEP) and Professional Certifications such as Graphics design, video editing, and Web Page.   Whether you are looking for a career change, a new job, a promotion or to update your skills in the workplace, we have the program you need. 

<?php
     include ("include/footer.php");
?>
1.          এখন সঠিক data দিয়ে Sent বাটনে ক্লিক করুন।
2.         Welcome ম্যাসেজ আসবে।
3.        database - এ সমসত্ম ডাটা পাওয়া যাবে।
4.          ভূল ডাটা দিয়ে Sent বাটনে ক্লিক করুন Try Again  ম্যাসেজ আসবে এবং database পূরন হবে না। 
মোটামুটি Registration ফাইলটি তৈরী করা হল। সামান্য একটু সমস্যা রয়েছে কোন ডাটা  না দিয়ে এবং Sent বাটনে ক্লিক না করলেও শুরুতেই Try Again ম্যাসেজটি আসে। বিভিন্ন ভাবে এই সমস্যার সমাধান করা যায়। আমরা সহজ উপায়ে করবো। এজন্য ২টি Registration ফাইল তৈরী করবো একটিতে মাঝের php কোডিং টুকু থাকবে না । চলুন শুরু করা যাক।
১.  Registration.php ফাইলের line No 7 Action = Registration2.php কোড লিখুন এবং ফাইলটি Save As করে Registration2.php নাম দিন।
২. এখন Registration2.php ফাইল থেকে header footer form  এর কোডিং রেখে মাঝের php কোডিং line নং 46 থেকে line নং 92 পযমর্ত্ম মুছে দিন এবং Save As করে ফাইলের নাম দিন Registration.php. ব্যাস এবার চেষ্টা করে দেখুন সব ঠিক আছে।

এখন একজন ইউজার রেজিস্টেশন এক বার করার পর আমাদের database এ সংরক্ষিত থাকলো। এখন যতবার খুশি Log-in করতে পারবে।  Log-in বা Registration না করে ও প্রায় সমসত্ম Web Site টি ব্রাউজ করতে পারবে। তবে যে কোন পেজকে restrict করা যেতে পারে। যেমন মনে করি log-in করা না থাকলে আমাদের Product পেজটি দেখা যাবে না । যদি Product বাটনে কোন ইউজার ক্লিক করে তবে Log-in এর ম্যাসেজ দেওয়া হবে। ইত্যাদি বিভিন্ন কাজে Log-inRegister করার দরকার হয়। যেমন আপনি Facebook এর কথাই ভাবুন আপনাকে প্রতিবার Log-in করতে হয়। Registration মাত্র একবারই করতে হয়। আমাদের Site এ আমরা অপশন রেখেছি কেউ Product পেজে যেতে চাইলে Log-in করতে হবে। এই Log-in Product পেজ থেকে করা যাবে। আবার কেউ যদি শুরুতেই Log-in হয়ে থাকতে চান তবে Log-in বাটনে ক্লিক করে সেটি করতে পারবেন।
Log-in না করে Product বাটনে ক্লিক করলে নিচের মত অপশন আসবে।


Previous Post                                                                                           Next Post

  বিস্তারিত জানতে নিচের বইটি সংগরহ করে নিন।

Book Name: Mastering Microsoft  Word
Writer: Bappi Ashraf
Published By: Gyankosh Prokashani
Amount of Pages: 464
First Publish: October-2004
Last Edition: We've February-2015 edition. Future edition may be existed!
Book Price: BDT 350 (30% Discount)
 The writer of this book has told that he has written this book with the concept of "teach yourself". On the other hand, Web Design is a thing which is interesting to learn. He has also told that the book is full of fan and enjoyment so that a person can learn Web Design by himself by playing with the example projects of this book.  Book's CD Link below... 

 cd