These are all Year archive posts. So, you can select a Month under each Year category from the left side Menubar to filter down .

Getting User Device Location and Updating Database image PHP

Getting User Device Location and Updating Database

Author image
By JOHN Mon, Feb 19, 2024 at 12:31 PM (3 months ago )
Updated On Sat, Mar 09, 2024 at 07:59 AM (2 months ago)

In modern web applications, user location data can be a valuable asset for various functionalities, including personalization, localization, and tracking user activities.

Integrating user device location into your web application allows you to enhance user experiences and provide tailored content or services based on...

Read More … 
Data Science: Unveiling Insights in a Data-Driven World image Power BI

Data Science: Unveiling Insights in a Data-Driven World

Author image
By JOHN Sun, Feb 04, 2024 at 10:51 AM (3 months ago )
Updated On Sun, Feb 04, 2024 at 10:51 AM (3 months ago)

In our increasingly digitized landscape, data science emerges as a pivotal discipline. It blends mathematics, programming, and advanced analytics to extract meaningful patterns from vast datasets.

By harnessing artificial intelligence and machine learning, data scientists uncover actionable...

Read More … 
Global Positioning Systems  image Mislaneous(Mixed-up)

Global Positioning Systems

Author image
By JOHN Sun, Jun 04, 2023 at 04:57 PM (11 months ago )
Updated On Sun, Jun 04, 2023 at 04:57 PM (11 months ago)

As of 26 February 2023, 83 Global Positioning System navigation satellites have been built: 31 are launche...

Read More … 
Personal website file hierarchy  or structure  image Mislaneous(Mixed-up)

Personal website file hierarchy or structure

Author image
By JOHN Fri, Apr 21, 2023 at 12:23 PM (one year ago )
Updated On Fri, Apr 21, 2023 at 05:04 PM (one year ago)

checkout my personal website file hierarchy here



Read More … 
How to create a custom archive page template on your website layout image PHP

How to create a custom archive page template on your website layout

Author image
By JOHN Thu, Nov 17, 2022 at 08:00 AM (2 years ago )
Updated On Thu, Jan 05, 2023 at 06:24 PM (one year ago)

coming soon. for updates



Read More … 
Test the video layout design(Upload and Store video to MySQL Database with PHP) image PHP

Test the video layout design(Upload and Store video to MySQL Database with PHP)

Author image
By JOHN Sat, Nov 05, 2022 at 05:15 PM (2 years ago )
Updated On Wed, Nov 09, 2022 at 06:39 PM (2 years ago)

By storing a file in the MySQL database make it easier to retrieve files uploaded by the user or in a specific category.For this require storing the file on the server and saving the reference to the database. In the tutorial, I show how you can upload and store video to the MySQL database table with PHP. Also, show how you can...

Read More … 
Find second highest Salary Of Employee in different ways in  SQL SERVER image T-SQL

Find second highest Salary Of Employee in different ways in SQL SERVER

Author image
By JOHN Sun, Oct 30, 2022 at 10:15 PM (2 years ago )
Updated On Fri, Nov 04, 2022 at 06:56 PM (2 years ago)

SubQueryFind 2nd Highest Salary in SQL SERVER

There are multiple ways to find the second-highest salary in SQL 

Creating Table:- The first step is to create a table

CREATE TABLE...                            

Read More … 
How to set the expiry period for a reset password link. image PHP

How to set the expiry period for a reset password link.

Author image
By JOHN Mon, Oct 10, 2022 at 05:31 AM (2 years ago )
Updated On Tue, Nov 08, 2022 at 07:53 PM (2 years ago)

You may be wondering how to implement or set a password link expiry time after requesting a reset password. So we can implement using PHP and Backend MySql. We will divide the content in to three sections.

1, create an input text box a user entered their email

<form class="...                            

Read More … 
Search text box clear button image JavaScript

Search text box clear button

Author image
By JOHN Mon, Jun 06, 2022 at 09:04 PM (2 years ago )
Updated On Sun, Nov 20, 2022 at 06:36 PM (one year ago)

this is an example how to clear input value when click a clear button in search box . create a search form to demonstrate this task

div #serchhide{
    display:none;
    cursor:pointer
}

then create a search form

<form...                            

Read More … 
Send A verification email when a new user registered  image PHP

Send A verification email when a new user registered

Author image
By JOHN Tue, Dec 07, 2021 at 04:53 PM (2 years ago )
Updated On Tue, Nov 08, 2022 at 06:58 AM (2 years ago)

When a new user  registered for the first time the account must verified. It can be done in different ways. 

// REGISTER USER
if (isset($_POST['register_btn'])) {
// receive all input values from the form
$firstname = esc($_POST['firstname']);
$lastname = esc($_POST['lastname']);
...                            

Read More … 
How to Send Verification link when a new user register image PHP

How to Send Verification link when a new user register

Author image
By JOHN Fri, Oct 15, 2021 at 07:49 AM (3 years ago )
Updated On Fri, Nov 04, 2022 at 05:00 PM (2 years ago)

We are going to build a nice PHP sign-up script where a user can create an account to gain access to the "members only section" of a website.

After the user creates their account, the account will then be locked until the user clicks a verification link that they'll receive in their email inbox.



Read More … 
HTML structure image HTML

HTML structure

Author image
By GETACHEW Sat, Oct 09, 2021 at 05:57 PM (3 years ago )
Updated On Fri, Nov 04, 2022 at 06:35 PM (2 years ago)

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Example</title>
<style>
/* Also works here */
a.not-a-class {
	color: blue;
}
</style>
<body>
<div style="color: green;"></div>
<div style="col...                            

Read More … 
Inline color image Web Design

Inline color

Author image
By GETACHEW Sat, Oct 09, 2021 at 03:44 PM (3 years ago )
Updated On Fri, Nov 04, 2022 at 03:08 PM (2 years ago)

span.foo {
	background-color: navy;
	color: #BFD;
}
span.bar {
	background: rgba(105, 0, 12, .38);
	color: hsl(30, 100%, 50%);
	border-color: transparent;
}

 



Read More … 
add prism code snippet in to a website image JavaScript

Add prism code snippet in to a website

Author image
By GETACHEW Fri, Oct 08, 2021 at 08:57 AM (3 years ago )
Updated On Fri, Nov 04, 2022 at 03:08 PM (2 years ago)

This is an example of code snippet how it display the content of you code

(function () {

	if (typeof Prism === 'undefined' || typeof document === 'undefined') {
		return;
	}

	/**
	 * Plugin name which is used as a class name for 
 which...                            

Read More … 
Html code snippet image HTML

Html code snippet

Author image
By JOHN Thu, Oct 07, 2021 at 09:28 PM (3 years ago )
Updated On Fri, Nov 04, 2022 at 03:08 PM (2 years ago)

<!DOCTYPE html>
<html lang="en">
<head>

<meta charset="utf-8" />
<link rel="icon" href="assets/favicon.png" />
<title>Line Numbers ? Prism plugins</title>
<base href="../.." />
<link rel="stylesheet" href="assets/style.css" />
<li...                            

Read More … 
using Line Numbers in code snippet   image JavaScript

Using Line Numbers in code snippet

Author image
By JOHN Thu, Oct 07, 2021 at 07:47 PM (3 years ago )
Updated On Fri, Nov 04, 2022 at 03:08 PM (2 years ago)


(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;
		}
	}
                            

Read More … 
JavaScript image JAVA

JavaScript

Author image
By JOHN Thu, Oct 07, 2021 at 03:14 PM (3 years ago )
Updated On Fri, Nov 04, 2022 at 03:08 PM (2 years ago)

// 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;
}                            

Read More … 
Email Verification using JavaScript image JavaScript

Email Verification using JavaScript

Author image
By JOHN Tue, Aug 10, 2021 at 08:20 PM (3 years ago )
Updated On Fri, Nov 04, 2022 at 03:08 PM (2 years ago)

Protect fake email 

function validate_email() {

var request;

try {

request= new XMLHttpRequest();

}

catch (tryMicrosoft) {

try {

request= new ActiveXObject("Msxml2.XMLHTTP");
}

catch (otherMicrosoft) 
{
try {
request= new ActiveXObject("Microsoft.X...                            

Read More … 
Protect hacker image Web Design

Protect hacker

Author image
By JOHN Fri, Jun 25, 2021 at 12:41 PM (3 years ago )
Updated On Fri, Nov 04, 2022 at 03:08 PM (2 years ago)

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 



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

How to limit the number of login attempts

Author image
By JOHN Sat, Oct 31, 2020 at 10:19 PM (4 years ago )
Updated On Wed, Nov 09, 2022 at 04:38 PM (2 years ago)

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 . '/incl...                            

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

How to limit the number of login attempt using PHP part 2(PHP functionality)

Author image
By JOHN Tue, Sep 22, 2020 at 06:47 PM (4 years ago )
Updated On Wed, Nov 09, 2022 at 05:06 PM (2 years ago)

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= "SELEC...                            

Read More … 
Download file using PHP image PHP

Download file using PHP

Author image
By MEWDED Wed, Sep 02, 2020 at 10:04 AM (4 years ago )
Updated On Sat, Nov 12, 2022 at 09:10 AM (2 years ago)

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

<form method="post" action="" enctype="multipart/form-data">
<input type="file" name="File" id="File">
<button type="submit" cla...                            

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

Inactive user enforce to login (SESSION expired) or Limmit the resource

Author image
By MEWDED Tue, Sep 01, 2020 at 04:24 AM (4 years ago )
Updated On Sat, Nov 12, 2022 at 09:35 AM (2 years ago)

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 = mysql...                            

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

How to count page viewers based on the IP Address of the device

Author image
By MEWDED Thu, Aug 27, 2020 at 04:37 PM (4 years ago )
Updated On Sat, Nov 12, 2022 at 06:57 PM (2 years ago)

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...

Read More … 
Responsive Menu Bar image HTML

Responsive Menu Bar

Author image
By MICHAEL Fri, Aug 14, 2020 at 05:53 PM (4 years ago )
Updated On Fri, Nov 04, 2022 at 03:08 PM (2 years ago)

RESPONSIVE IN HTML 



Read More … 
CHECK FORM VALIDATION without loading a page using AJAX image JavaScript

CHECK FORM VALIDATION without loading a page using AJAX

Author image
By MEWDED Fri, Aug 14, 2020 at 03:12 PM (4 years ago )
Updated On Fri, Nov 04, 2022 at 03:08 PM (2 years ago)

Article description is here



Read More … 
Pagination in PHP image PHP

Pagination in PHP

Author image
By MEWDED Fri, Aug 14, 2020 at 02:58 PM (4 years ago )
Updated On Fri, Nov 04, 2022 at 03:08 PM (2 years ago)

PHP 



Read More … 
Performance Analysis in PowerBI  image Power BI

Performance Analysis in PowerBI

Author image
By MEBRATU Fri, Aug 07, 2020 at 09:23 AM (4 years ago )
Updated On Tue, Sep 05, 2023 at 10:46 AM (8 months ago)

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.
   ...

Read More … 
Bookmark  image Power BI

Bookmark

Author image
By MEBRATU Fri, Aug 07, 2020 at 09:18 AM (4 years ago )
Updated On Fri, Nov 04, 2022 at 03:08 PM (2 years ago)

Description and implementation shown here



Read More … 
Button action in Power BI image Power BI

Button action in Power BI

Author image
By MEBRATU Fri, Aug 07, 2020 at 09:13 AM (4 years ago )
Updated On Tue, Sep 05, 2023 at 08:44 AM (8 months ago)

Button can simplify and organize your report 

Check live interaction here

This Amazon Product Review Dashboard provides a comprehensive overview of product...

Read More … 
Power BI as Application layout Interaction  image Power BI

Power BI as Application layout Interaction

Author image
By MEBRATU Fri, Aug 07, 2020 at 09:05 AM (4 years ago )
Updated On Tue, Sep 05, 2023 at 11:37 AM (8 months ago)

Post/article description how to implement the application interface and make Analysis 

 



Read More … 
Multithreading task in Power BI image Power BI

Multithreading task in Power BI

Author image
By MEBRATU Fri, Aug 07, 2020 at 09:00 AM (4 years ago )
Updated On Fri, Nov 04, 2022 at 03:08 PM (2 years ago)

Multi Analysis based on the profitability, negativity, demand and so on criteria 



Read More … 
Resume Preparation image Resume

Resume Preparation

Author image
By MEBRATU Wed, Jul 22, 2020 at 04:22 PM (4 years ago )
Updated On Fri, Nov 04, 2022 at 03:08 PM (2 years ago)

this is the body of article



Read More … 
Ck Editor reach text editor image Power BI

Ck Editor reach text editor

Author image
By MEBRATU Mon, Jul 20, 2020 at 01:16 PM (4 years ago )
Updated On Sun, Nov 06, 2022 at 05:54 PM (2 years ago)

to do list

 



Read More … 
Test the CK EDITOR Insert image image Microsoft Azure

Test the CK EDITOR Insert image

Author image
By MEBRATU Mon, Jul 20, 2020 at 03:52 AM (4 years ago )
Updated On Fri, Nov 04, 2022 at 07:00 PM (2 years ago)

body

http://localhost:81/blog/assets/post_ilustration_images/20170630_091323000_iOS.jpg



Read More … 
Author Title image PHP

Author Title

Author image
By JOHN Mon, Jul 13, 2020 at 04:19 AM (4 years ago )
Updated On Fri, Nov 04, 2022 at 03:08 PM (2 years ago)

body of the statement



Read More … 
html  image HTML

Html

Author image
By MEBRATU Mon, Jul 13, 2020 at 04:19 AM (4 years ago )
Updated On Fri, Nov 04, 2022 at 03:08 PM (2 years ago)

this is body of the verification of related post



Read More … 
STAR image Power Automate

STAR

Author image
By MEBRATU Fri, Jul 10, 2020 at 05:49 PM (4 years ago )
Updated On Fri, Nov 04, 2022 at 03:08 PM (2 years ago)

this is the body of the post



Read More … 
Admin Dashboard Layout image HTML

Admin Dashboard Layout

Author image
By MEBRATU Tue, Jul 07, 2020 at 03:47 AM (4 years ago )
Updated On Thu, Dec 01, 2022 at 10:58 AM (one year ago)

finally



Read More … 
html test image Web Design

Html test

Author image
By JOHN Wed, Jun 24, 2020 at 06:20 PM (4 years ago )
Updated On Fri, Nov 04, 2022 at 03:08 PM (2 years ago)

body html



Read More … 
4th title image Power Automate

4th title

Author image
By MEBRATU Mon, Jun 22, 2020 at 04:58 PM (4 years ago )
Updated On Fri, Nov 04, 2022 at 03:08 PM (2 years ago)

after 2pm



Read More … 
9th topics image JavaScript

9th topics

Author image
By MEBRATU Sat, Jun 20, 2020 at 05:41 PM (4 years ago )
Updated On Fri, Nov 04, 2022 at 03:08 PM (2 years ago)

estimate paragraph readig time



Read More … 
Create custom 404 page not found page when a user misplaced or type an error website URL image Web Design

Create custom 404 page not found page when a user misplaced or type an error website URL

Author image
By MEBRATU Sat, May 16, 2020 at 08:34 PM (4 years ago )
Updated On Fri, Dec 02, 2022 at 12:06 PM (one year ago)

Designing a custom 404 page is nice to land a user if they missed an actual site address.

First design  a page  based on your interest and need.

second call the page that you created inside .htaccess  file.

#redirect  to custom page not found page
RewriteCond...                            

Read More … 
7th topic image Resume

7th topic

Author image
By MEBRATU Wed, Apr 22, 2020 at 03:01 AM (4 years ago )
Updated On Fri, Nov 04, 2022 at 03:08 PM (2 years ago)

it will continue until; noon.



Read More … 
this is the 3rd topic image Power Query

This is the 3rd topic

Author image
By MEBRATU Sun, Feb 16, 2020 at 08:34 PM (4 years ago )
Updated On Fri, Nov 04, 2022 at 03:08 PM (2 years ago)

will come soon



Read More … 
5th topics image T-SQL

5th topics

Author image
By MEBRATU Thu, Jan 16, 2020 at 08:34 PM (4 years ago )
Updated On Fri, Nov 04, 2022 at 03:08 PM (2 years ago)

my love



Read More … 
How to write a resume in professional manner image Database Design

How to write a resume in professional manner

Author image
By MEBRATU Wed, Nov 13, 2019 at 03:52 AM (5 years ago )
Updated On Wed, Nov 16, 2022 at 11:04 PM (2 years ago)

This is how to write a professional resume 

 



Read More … 
5 Habits that can improve your life image Power Query

5 Habits that can improve your life

Author image
By GETACHEW Thu, Jan 17, 2019 at 11:14 PM (5 years ago )
Updated On Fri, Nov 04, 2022 at 03:08 PM (2 years ago)

Read every day



Read More … 
Fundamental T-SQL Script  image Microsoft Azure

Fundamental T-SQL Script

Author image
By MEBRATU Sun, Dec 16, 2018 at 08:34 PM (5 years ago )
Updated On Fri, Nov 04, 2022 at 03:08 PM (2 years ago)

C H A P T E R 4
Subqueries
SQL supports writing queries within queries, or whose result set is returned to the caller and is known as the nesting queries. The outermost query is a query outer query. The inner query is a
query whose result is used by the outer query and is known as a subquery. The inner...

Read More … 
An Imaginable Power  Power Query

An Imaginable Power "Power Query" in Power BI for data ETL

Author image
By MEBRATU Sun, Apr 15, 2018 at 08:34 PM (6 years ago )
Updated On Fri, Nov 04, 2022 at 03:08 PM (2 years ago)

Let's digest the power Query



Read More … 
6th topic image SQL Server

6th topic

Author image
By MEBRATU Fri, Mar 16, 2018 at 08:34 PM (6 years ago )
Updated On Fri, Nov 04, 2022 at 03:08 PM (2 years ago)

Beautiful country



Read More … 
new_file_name image Power Apps

New_file_name

Author image
By MEBRATU Sun, Jun 18, 2017 at 09:26 PM (7 years ago )
Updated On Fri, Nov 04, 2022 at 03:09 PM (2 years ago)

$new_file_name



Read More … 

Search


Find Us on Facebook

Subscribe for new Updates




Back to Top