Power BI Clue

Recent Posts

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. <form class="modal-contentloginform" id="table" method="post" action="<?php echo BASE_URL . 'login.php'; ?>" onSubmit = "return validate()"> <div class="header_login"> <?php include(ROOT_PATH . '/includes/errors.php'); ?> <?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
JavaScript CHECK FORM VALIDATION without loading a page using AJAX cover image
CHECK FORM VALIDATION without loading a page using AJAX
Author image

<p>Article description is here</p>

Read More
PHP Pagination in PHP cover image
Pagination in PHP
Author image

<p>PHP&nbsp;</p>

Read More
Power BI Performance Analysis in PowerBI  cover image
Performance Analysis in PowerBI
Author image

Data insight using a Power BI is fun. 1. Performance Insight:    - Performance insight refers to the analysis of various metrics and key performance indicators (KPIs) to evaluate the success or effectiveness of a particular aspect of a business, such as a product, marketing campaign, or team.    - It involves monitoring and assessing metri...

Read More
Power BI Bookmark  cover image
Bookmark
Author image

<p>Description and implementation shown here</p>

Read More

Search

Archives

Find Us on Facebook

Subscribe for new updates



Back to Top

   Subscribe for new updates

G3TechDesign logo image