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
Single - File Upload Pluggin with Ajax & PHP May 27, 2021 frontend file <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <h2>Upload File:</h2> <form id="up"> <input type="file" name="upload"><br><br> <button type="button" onclick="upload_data();">UPLOAD</button> </form> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script> <script> function upload_data(){ var file = new FormData(up); console.log(fi... Read more
Comments
Post a Comment