return json() data and fetch it in php

You can simply use the json_encode() function to return JSON response from a PHP script. Also, if you're passing JSON data to a JavaScript program, make sure set the Content-Type header. Let's take a…

0 Comments

setTimeInterval() in javascript

In JavaScript, a block of code can be executed in specified time intervals. These time intervals are called timing events. There are two methods for executing code at specific intervals.…

0 Comments

Membership plan bootstrap

<div class="columns">   <ul class="price">     <li class="header">Basic</li>     <li class="grey">$ 9.99 / year</li>     <li>10GB Storage</li>     <li>10 Emails</li>     <li>10 Domains</li>     <li>1GB Bandwidth</li>     <li class="grey"><a href="#" class="button">Sign Up</a></li>   </ul> </div> <style> /* Create three columns of equal width */ .columns {  …

0 Comments

css for checkbox and radio btn

<!-- Rectangular switch --> <label class="switch">   <input type="checkbox">   <span class="slider"></span> </label> <!-- Rounded switch --> <label class="switch">   <input type="checkbox">   <span class="slider round"></span> </label> <style> /* The switch - the box around the slider */ .switch {  …

0 Comments

PHP aggregates function

An aggregate function operates on a series of values and returns a single summary value, because an aggregate function typically operates on the values in columns and aggregate functions are…

0 Comments