Category Archives: PHP

Dynamic Drop down menu – Angular JS

In this article, explain how to use select box using angular js in php or html page. AngularJS is a javascript framework. To implement this application, first include jquery files like <script src=”https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js”></script> Table Of Content HTML Javascript The HTML and Angular JS helps to perform dropdown menu. We can implement static and dynamic drop… Read More »

PHP Array Functions

The array functions allow you to manipulate and access arrays. In PHP , the array functions are the part of the PHP core. There is no installation needed to use these functions. Function Description array() Create an array array_change_key_case() Changes the case of all keys in an array. array_chunk() Split an array into chunks of… Read More »

PHP File System Functions

The filesystem functions allow you to access and manipulate the filesystem.   Function Description basename() Returns the filename component of a path. chmod() Changes the file mode. copy() Copies a file chgrp() Changes the file group chown() Changes the file owner. delete() See unlink() or unset() disk_free_space() Returns available space on filesystem or disk partition.… Read More »

Display Current Date and Time – PHP

Good Morning to all, Some website used to display the current date or time in frond-end. This is very simple method to display the data or time using php.In PHP5, to display date and time provide inbuilt function for solve this problem. The PHP date() function return the current date and time according to the… Read More »

SQL HAVING Clause

Hi Guys, This SQL article explain how to use the SQL HAVING clause with example and syntax. Mainly the SQL HAVING clause is used in combination with the GROUP BY clause to restrict the groups of returned rows to only those whose the condition is TRUE. Syntax SELECT exp1, exp2, … expn, aggregate_function (aggregate_exp) FROM… Read More »