Blinking Text With Rainbow Colour

script guru css

<!DOCTYPE html> <html> <head> <style> .blinking { background-image: -webkit-gradient( linear, left top, right top, color-stop(0, #f22), color-stop(0.15, #f2f), color-stop(0.3, #22f), color-stop(0.45, #2ff), color-stop(0.6, #2f2),color-stop(0.75, #2f2), color-stop(0.9, #ff2), color-stop(1, #f22) ); background-image: gradient( linear, left top, right top, color-stop(0, #f22), color-stop(0.15,…

Read MoreBlinking Text With Rainbow Colour

PHP Filters

php

Validate an Integer Within a Range <!DOCTYPE html> <html> <body> <?php /* variable to check */ $int = 12; /* min value */ $min = 1; /* max value */ $max = 20; if (filter_var($int, FILTER_VALIDATE_INT, array(“options” => array(“min_range”=>$min, “max_range”=>$max)))…

Read MorePHP Filters

MySQL – Create Trigger

A trigger is a special kind of stored procedure that automatically executes when an event occurs in the database server. DML triggers execute when a user tries to modify data through a data manipulation language (DML) event. DML events are INSERT, UPDATE, or DELETE…

Read MoreMySQL – Create Trigger

Email send Using Angularjs and PHP

php

In the following example you learn how to Email sending with AngularJS and PHP <script src = “scripts”></script> <div class=”container” ng-app=”formApp” ng-controller=”formController”> <div class=”col-md-6 col-md-offset-3″> <!– PAGE TITLE –> <div class=”page-header”> <h1><span class=”glyphicon glyphicon-tower” style=”font-size:20px”></span><span style=”font-size:20px; margin-left:10px;”>Send a direct e-mail…

Read MoreEmail send Using Angularjs and PHP

Cutout Text Using CSS

script guru css

Learn how to create a responsive cutout text with CSS. cutout text is also known as knockout. Here is a quick example of how you can produce Cutout Effect in CSS. <!DOCTYPE html> <html> <head> <meta name=”viewport” content=”width=device-width, initial-scale=1″> <style>…

Read MoreCutout Text Using CSS

Error Handling Using PHP

php

When creating scripts and web applications, error handling is an important part. If your code lacks error checking code, your program may look very unprofessional and you may be open to security risks. Try − A function using an exception should…

Read MoreError Handling Using PHP