<?php
// Check for safe mode
if( ini_get('safe_mode') ){
// Do it the safe mode way
print "ON";
}else{
// Do it the regular way
print "OFF";
}
?>
|
Leave a Reply
|
Page 1 of 0
<?php
// Check for safe mode
if( ini_get('safe_mode') ){
// Do it the safe mode way
print "ON";
}else{
// Do it the regular way
print "OFF";
}
?>
Leave a Reply
|