How to Password Decrypt In PHP Get link Facebook X Pinterest Email Other Apps May 28, 2021 Password Decrypt <?php$str = "shuvadeep";// echo sha1($str);$enc = base64_encode($str);echo base64_decode($enc);?> Get link Facebook X Pinterest Email Other Apps Comments
C.R.U.D Oparetion in (PHP Code) March 09, 2021 C.R.U.D Oparetion index.php <?php include "conn.php"; if (isset($_POST["usersubmit"])) { $vrname = $_POST["username"]; $vremployee = $_POST["useremployee"]; $vrsalary = $_POST["usersalary"]; $vrgender = $_POST["gender"]; //testing sucessfully complete // echo $vrname; // echo $vremployee; // echo $vrsalary; // echo $vrgender; // exit(); $inserting = "INSERT INTO dbemployeelist(dbname, dbemployee, dbsalary, dbgender) VALUES('$vrname', '$vremployee', '$vrsalary', '$vrgender')"; $connecting = mysqli_query($conn,$inserting); } ?> <!DOCTYPE html> <html lang="en"> <head> <title>Document</title> <style> form{ text-align:center; padding:2... Read more
Search Dropdown - jQuery June 29, 2022 <select name="vehicle_no" id="vehicle_no" class="form-control select" > <option value="" >Select Vehicle</option> <?php //echo $vchVehicleNumber;exit;?> @foreach($vehiclesData as $data) <option {{(isset($vchVehicleNumber) && $vchVehicleNumber == $data['vehicleno'])?'selected':''}} value="{{ $data['vehicleno'] }}" >{{ $data['vehicleno'] }}</option> @endforeach </select> // jQuery:- you have to add CDN of select2 jquery $("#vehicle_no").select2({ minimumResultsForSearch: Infinity }); $('#vehicle_no').select2({ minimumInputLength: 0 }); Read more
Form validation check | CODE { The say foundation | project } May 15, 2022 //File Namevalidatorchklist.js //============ Function to check field having no value =============== function blankCheck ( controlId , msg ) { if ( $ ( '#' + controlId ). val () == '' ) { // alert(msg); // alert(controlId); $ ( '.errMsg_' + controlId ). html ( msg ). show (); $ ( '#' + controlId ). addClass ( 'error-input' ); $ ( '#' + controlId ). focus (); return false ; } return true ; } //____________________________________________________________________ //Blade page: //employee Validate Message: let validateMsg = []; if ( ! blankCheck ( 'employerName' , 'Name can not be left blank' )) validateMsg. push ( "Name can not be left blank" ); // return false; /* if (!blankCheck... Read more
Comments
Post a Comment