Posts

Mission Lakadong: Beckoning the world! by KN Kumar (Chairman, Meghalaya Farmers' (Empowerment) Commission as on 16 November 2021)

Genuine heroes who move societies toward progress are neither dramatic nor glamorous. The ever-toiling farmers or army jawans prepared to sacrifice their lives for the nation are not in the public domain while the loud and flashy people dominate media space. Fake narratives mislead the broader society so much that it starts worshipping the false gods. I have not much idea about the sociology of heroism, but I know for sure that Padma Shri Ms Trinity Saioo and Mr Nanandro Marak are our state’s genuine heroes. Their steadfast commitment to progress, despite their humble backgrounds and limited means, makes them what they are – different from the rest! Some farmers I interacted with have felt that such a recognition restores their professional pride and personal self-esteem. While Trinity Saioo is known for her work in Mission Lakadong, Nanandro Marak is the man for Black Pepper in Garo Hills. The state department of Agriculture & Farmers’ Welfare created an ecosystem that has let suc

Code Area for blogger.

Copy and Paste this Code!!! <div style="background: #ffffff; border-width: 0.1em 0.1em 0.1em 0.8em; border: solid gray; overflow: auto; padding: 0.2em 0.6em; width: auto;">      <pre style="line-height: 125%; margin: 0;"> <-- Code Here -->      </pre> </div>

Blood Group List in HTML

Blood Group --Blood Group-- A+ A- B+ B- O+ O- AB+ AB- <div class="col-lg-6 col-md-6 col-sm-12"> <div class="form-group"> <label class="form-label">Blood Group</label> <select class="form-control" name="bloodgroup"> <option value="BloodGroup">--Blood Group--</option> <option value="A+">A+</option> <option value="A-">A-</option> <option value="B+">B+</option> <option value="B-">B-</option> <option value="O+">O+</option> <option value="O-&q

phone country code in php, html, bootstrap 4 or 5

Image
  Click on the link to view the country code

Store date Picker in MySql Database Using PHP

Image
  ADD_FORM.php <head> <link rel="stylesheet" type="text/css" href="form.css"> <meta charset="utf-8">   <meta name="viewport" content="width=device-width, initial-scale=1">   <title>Add Issue</title>   <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">   <link rel="stylesheet" href="/resources/demos/style.css">   <script src="https://code.jquery.com/jquery-1.12.4.js"></script>   <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>   <script> $(function () {             $("#datepicker").datepicker({ dateFormat: "yy-mm-dd", changeMonth: true, changeYear: true });         });   </script> </head> <form method="POST" action="insert_record.php"> <fieldset> <legend><span cla

How to connect HTML Register Form to MySQL Database with PHP (2020)

Image
 Youtube Videos How to connect HTML Register Form to MySql Database with PHP form.php <!DOCTYPE html> <html> <head> <title>Register Form</title> </head> <body> <form action="insert.php" method="POST"> <table> <tr> <td>Name: </td>  <td><input type="text" name="username" required></td> </tr> <tr> <td>Password :</td> <td><input type="password" name="password" required></td> </tr> <tr> <td>Gender :</td> <td> <input type="radio" name="gender" value="m" required>Male <input type="radio" name="gender" value="f" required>Female </td> </tr> <tr> <td>Email :</td> <td><input type

Complete User Registration System using PHP and MySql database

Image
                                                    References:  Complete User Registration system using PHP and MySql register.php <?php include('server.php'); ?> <!DOCTYPE html> <html> <head> <title>User registration system using PHP and MySQL</title> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body> <div class="header"> <h2>Register</h2> </div> <form method="post" action="register.php"> <!-- display validation errors here --> <?php include('errors.php'); ?> <div class="input-group"> <label>Username</label> <input type="text" name="username" value="<?php echo $username; ?>"> </div> <div class="input-group"> <label>Email</label> <input type="