19 Jan MS Excel Characters Count Formula January 19, 2021 By MDMMRS 0 comments Facebook Twitter Pinterest linkedin Telegram =LEN(TRIM(A2))Continue reading
29 Jun Uncategorized Logout with Cookie June 29, 2020 By MDMMRS 0 comments Facebook Twitter Pinterest linkedin Telegram <?php setcookie("email",$email,time()-3600); header("location: index.php"); ?>Continue reading
29 Jun PHP, sql Login with Cookie June 29, 2020 By MDMMRS 0 comments Facebook Twitter Pinterest linkedin Telegram <?php require_once('connect.php'); $email = $_REQUEST; $password = $_REQUEST; $matchQuery = "SELECT * FROM puran WHERE email='$ema...Continue reading
29 Jun PHP, sql Data Show from COOKIE June 29, 2020 By MDMMRS 0 comments Facebook Twitter Pinterest linkedin Telegram <?php require_once("connect.php"); if(isset($_COOKIE)){ $currentUserTarget = $_COOKIE; $numQuery = "...Continue reading
29 Jun PHP, sql Notification in php mysql June 29, 2020 By MDMMRS 0 comments Facebook Twitter Pinterest linkedin Telegram <?php if (isset($_REQUEST)){ if($_REQUEST=="false"){ echo "<font color='MediumSeaGreen'><strong>Your Registered E-Mail A...Continue reading
29 Jun PHP, sql Password Recovery via Email June 29, 2020 By MDMMRS 0 comments Facebook Twitter Pinterest linkedin Telegram <form action="" method="POST"> <label>Your E-Mail Address</label><input type="email" name="email" required><...Continue reading
29 Jun PHP, sql Insert code in php mysql June 29, 2020 By MDMMRS 0 comments Facebook Twitter Pinterest linkedin Telegram $insertQuery = "INSERT INTO puran (name,email,password,token) VALUES ('$name','$email','$password','$token')"; $runQuery = mysqli_query...Continue reading
29 Jun PHP, sql Check if email already exist php mysqli database June 29, 2020 By MDMMRS 0 comments Facebook Twitter Pinterest linkedin Telegram $emailMatch = "SELECT * FROM puran WHERE email='$email' "; $result = mysqli_query($connect,$emailMatch); if(mysqli_num_rows($result)>...Continue reading
22 Feb HTML HTML Page locker February 22, 2020 By MDMMRS 0 comments Facebook Twitter Pinterest linkedin Telegram <SCRIPT language="JavaScript"> <!--hide var password; var pass1="password Here"; password=prompt('Please enter your password...Continue reading
04 Feb MS Excel Age Calculator February 4, 2020 By MDMMRS 0 comments Facebook Twitter Pinterest linkedin Telegram =DATEDIF(E3,E5,"Y") & " Years, " & DATEDIF(E3,E5,"YM") & " Months, " & DATEDIF(E3,E5,"MD") & " Days"Continue reading