Power BI Clue

Recent Posts

JavaScript using Line Numbers in code snippet   cover image
Using Line Numbers in code snippet
Author image

<pre> <code class="language-javascript"> (function () { if (typeof Prism === 'undefined' || typeof document === 'undefined') { return; } function mapClassName(name) { var customClass = Prism.plugins.customClass; if (customClass) { return customClass.apply(name, 'none'); } else { return name; } } var PARTNER ...

Read More
JAVA JavaScript cover image
JavaScript
Author image

<pre> <code class="language-css">// Variables $font-stack: Helvetica, sans-serif; $primary-color: #333; @mixin border-radius($radius) { -webkit-border-radius: $radius; -moz-border-radius: $radius; -ms-border-radius: $radius; border-radius: $radius; } body { font: 100% $font-stack; color: $primary-color; } .box { @...

Read More
JavaScript Email Verification using JavaScript cover image
Email Verification using JavaScript
Author image

<p>Protect fake email&nbsp;</p> <pre> <code class="language-javascript">function validate_email() { var request; try { request= new XMLHttpRequest(); } catch (tryMicrosoft) { try { request= new ActiveXObject("Msxml2.XMLHTTP"); } catch (otherMicrosoft) { try { request= new ActiveXObject("Microsoft.XMLHTTP"); } ca...

Read More
Web Design Protect hacker cover image
Protect hacker
Author image

<p>Hacker can damage your website data, they redirect your DNS, use the bandwidth, add malicious data and use illegal activity by someone license so how we secure&nbsp;</p>

Read More
PHP How to limit the number of login attempts  cover image
How to limit the number of login attempts
Author image

Let's create a login form page a user can login. &lt;form class="modal-contentloginform" id="table" method="post" action="&lt;?php echo BASE_URL . 'login.php'; ?&gt;" onSubmit = "return validate()"&gt; &lt;div class="header_login"&gt; &lt;?php include(ROOT_PATH . '/includes/errors.php'); ?&gt; &lt;?php include(ROOT_PATH . ...

Read More
PHP How to limit the number of login attempt using PHP part 2(PHP functionality) cover image
How to limit the number of login attempt using PHP part 2(PHP functionality)
Author image

In previous post we design the login form, so finallyΒ  implement PHP code // LOG USER IN if (isset($_POST['login_btn'])) { $email = esc($_POST['email']); $password = esc($_POST['password']); $time=time()-60; $ip_address=getIpAddr(); $check_login_result= "SELECT count(*) as total_count from login_log WHERE try_time&g...

Read More
PHP Download file using PHP cover image
Download file using PHP
Author image

Upload and save a file in to a databaseΒ  using PHP and MySQL. let's implement upload a file. create an upload form input file type &lt;form method="post" action="" enctype="multipart/form-data"&gt; &lt;input type="file" name="File" id="File"&gt; &lt;button type="submit" class="btn" name="btn-upload">Upload</i>&lt;/button&gt; &lt;/form&g...

Read More
PHP Inactive user enforce to login (SESSION expired) or Limmit the resource cover image
Inactive user enforce to login (SESSION expired) or Limmit the resource
Author image

First when a user logged in put the logged in user in to a session $sql = "SELECT * FROM users WHERE (email='$email' OR username='$email') AND password='$password' LIMIT 1"; $result = mysqli_query($conn, $sql); if (mysqli_num_rows($result) > 0) { $row = mysqli_fetch_assoc($result); // get id of created user ...

Read More
PHP How to count page viewers based on the IP Address of the device cover image
How to count page viewers based on the IP Address of the device
Author image

How to Add a Visitor Counter to a Website using PHP and MySQLΒ  When a user visit a website and access the the content based on the IP address of the device and it will count the visitors. First create a table in MySQL database as shown in the picture below Then write a PHP code to count the visitorΒ  /*visitor counter*/ function...

Read More
HTML Responsive Menu Bar cover image
Responsive Menu Bar
Author image

<p>RESPONSIVE IN HTML&nbsp;</p>

Read More

Search

Archives

Find Us on Facebook

Subscribe for new updates



Back to Top

   Subscribe for new updates

G3TechDesign logo image