Mktime function in php ?
The mktime function returns the timestamp in a Unix format. Syntax. <?php mktime(hour, minute, second, month, day, year, is_dst); ?> HERE, mktime(…) : is the make php timestamp…
As Developer
The mktime function returns the timestamp in a Unix format. Syntax. <?php mktime(hour, minute, second, month, day, year, is_dst); ?> HERE, mktime(…) : is the make php timestamp…
The header() functions are used to send the raw HTTP header to the client which means it sets the headers for the HTTP response. You an perform different sorts of…
The PHP Date function is the PHP built-in function which works with the date data types .The Date function is use to optimize the dates in proper and human readable…
The php access modifiers have the power to set the access to the classes and their members that is the functions or variables which is defined with in the class…
As we have discussed about the Regular Expression in previous topic , Before the string can be matched to regular expression ,The regular expression has to be created , Thus,…
The function is the block of statements which can be used repeatedly in the program and it will not execute when page is loaded , you need to call a…
In Short Recursive function is a function which call itself or themselves during the execution of the program . Note **Every Recursive function must need to have the termination condition .The…
PHP have a feature which allows you to send the mail from the server using mail() function. In order to sent mail using php it requires three mandatory parameters The Reciever …