PHP Array Function

Here is the list of PHP array functions sizeof () :- This function is used to count the items of the array. (count() is also used instead of this).   Example:  

explode () :- This function is used…

Expand +

Difference beetween GET and POST methods in PHP

GET: Parameters remain in browser history because they are part of the URL Can be bookmarked. GET method should not be used when sending passwords or other sensitive information. 7607 character maximum size. Example: http://www.test.com/index.htm?name1=value1&name2=value2

POST: Parameters are not…

Expand +

Echo VS Print Statement

ECHO: echo and print are more or less the same. echo() and print() are language constructs in PHP, both are used to output strings. The speed of both statements is almost the same. echo() can take multiple expressions Example:

Expand +

Jquery for Datetime Picker

datepicker

Hello, In this post we will learn jquery script for date time picker at textbox of any project in which we want to use select dateTime option.

Expand +