Pages
Home
skip to main
|
skip to sidebar
phponlinetutorial
$_env example | env variable in php
k
Monday, 29 April 2013
$_env is a super gloabl variable. By using env variable we can get the information of operation system.
loading..
Newer Post
Older Post
Home
Most Reading
wordpress interview questions and answers for 2 years experience
word press interview questions and answers for 2 years experience What is the Difference Between Posts vs. Pages Posts vs. Pages * ...
codeigniter interview questions and answers for 2 year experience
codeigniter interview questions and answers for 2 year experience 1.what is the Codeigniter? Ans: Codeigniter is open source, webapplic...
php super global variables examples | super global variables in php example
Super global variables are special type variables in php. We can access them from any place with in the application. $_GET :-The...
joomla interview questions and answers 1year experience
What is the file, where database setting are stored in Joomla cms? answer: configuration.php in the root directory. What is the prefix o...
file_exists not working php file_exits doesn't support remote URLs.
file_exists not working php file_exits doesn't support remote URLs. php file functions: if php file_exits not working. we can try...
Implode in php example | php implode function example
php implode function example Definition : - implode is a string function. By using this function to join the string as array elem...
PHP7.0 Features
Amazing features of php7 versions 1. Increase the performance. 2. Standalone Multi-threading Web Server 3.Just in time compilation 4....
php mysql explain with examples
PHP MYSQL Php is a server side scripting language. By using php we can interact with the different databases. Php support cross data...
Sql group by query
$sql = "SELECT *,count(`created_on`) as blogcount FROM `tbl_blog` group by DATE_FORMAT(`created_on`,\'%M %Y\') order by create...
how to check if user is login are not in drupal
how to check if user is login are not in drupal Ans: if (user_is_logged_in()) { // Do something. } are global $user; if(...