Power BI Clue

Recent Posts

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

Search

Archives

Find Us on Facebook

Subscribe for new updates



Back to Top

   Subscribe for new updates

G3TechDesign logo image