Wednesday, 13 November 2013

Java supports three types of comments. The first two are the // and the /* */. The third type is called a documentation comment. It begins with the character sequence /** and it ends with */. Documentation comments allow you to embed information about your program into the program itself. You can then use the javadoc utility program to extract the information and put it into an HTML...
AJAX Poll The following example will demonstrate a poll where the result is shown without reloading. Example Explained - The HTML Page When a user choose an option above, a function called "getVote()" is executed. The function is triggered by the "onclick" event: <html> <head> <script> function getVote(int) { if (window.XMLHttpRequest)   {// code for IE7+, Firefox,...
The PHP array functions are part of the PHP core. No installation is required to use these functions. Function Description array() Creates an array array_change_key_case() Changes all keys in an array to lowercase or uppercase array_chunk() Splits an array into chunks of arrays array_column() Returns the values from a single column...
The calendar extension contains functions that simplifies converting between different calendar formats. It is based on the Julian Day Count, which is a count of days starting from January 1st, 4713 B.C. Note: To convert between calendar formats, you must first convert to Julian Day Count, then to the calendar of your choice. Note: The Julian Day Count is not the same as the Julian Calendar! Installation For...
The date/time functions allow you to get the date and time from the server where your PHP script runs. You can then use the date/time functions to format the date and time in several ways. Note: These functions depend on the locale settings of your server. Remember to take daylight saving time and leap years into consideration when working with these functions. Installation The PHP date/time...