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
Laravel - Dependent Drop Down Using Ajax December 12, 2021 Resources\View\ index.blade.php: <h1> Dependent Drop Down </h1> <select name="country" id="country"> <option hidden>Select Country</option> @foreach($country as $list) <option value="{{$list->id}}">{{$list->country}}</option> @endforeach </select> <select name="state" id="state"> <option hidden>Select State</option> <option value=""></option> </select> <select name="city" id="city"> <option hidden>Select City</option> <option value=""></option> </select> </body> <script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJ... Read more
Comments
Post a Comment