Power BI Clue

Recent Posts

T-SQL Find second highest Salary Of Employee in different ways in  SQL SERVER cover image
Find second highest Salary Of Employee in different ways in SQL SERVER
Author image

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 Employee ( ID INT IDENTITY(1,1) PRIMARY KEY, NAME VARCHAR(40), SALARY MONEY ) Then Inserting Values in Table INSERT INTO Employee VALUES('M...

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

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="login-form" id="vform" action="" method="post"> ...

Read More
PHP Getting User Device Location and Updating Database cover image
Getting User Device Location and Updating Database
Author image

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 their geographical location....

Read More
JavaScript Search text box clear button cover image
Search text box clear button
Author image

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 action="" method="post"> <div class="input-container-search"> <input type="search" name=...

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

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']); $genders=esc($_POST["gender"]); $username = esc($_POST['...

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

<p>We are going to build a nice PHP sign-up script where a user can create an account to gain access to the&nbsp;&quot;members only section&quot; of a website.</p> <p>After the user creates their account, the account will then be locked until the user clicks a verification link that they&#39;ll receive in their email inbox.</p> <pre> <code c...

Read More
HTML HTML structure cover image
HTML structure
Author image

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

Read More
Web Design Inline color cover image
Inline color
Author image

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
JavaScript add prism code snippet in to a website cover image
Add prism code snippet in to a website
Author image

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 <pre> which is activating the plugin * * @type {string} */ var PLUGIN_NAME = 'line-numbers'; ...

Read More
HTML Html code snippet cover image
Html code snippet
Author image

<pre> <code class="language-html">&lt;!DOCTYPE html&gt; &lt;html lang="en"&gt; &lt;head&gt; &lt;meta charset="utf-8" /&gt; &lt;link rel="icon" href="assets/favicon.png" /&gt; &lt;title&gt;Line Numbers ? Prism plugins&lt;/title&gt; &lt;base href="../.." /&gt; &lt;link rel="stylesheet" href="assets/style.css" /&gt; &lt;link rel="stylesheet...

Read More

Search

Archives

Find Us on Facebook

Subscribe for new updates



Back to Top

   Subscribe for new updates

G3TechDesign logo image