Plugin Notes
Add PHP version check to php plugin script.
// PHP Version Check
if( phpversion() < '5.1.0' ) {
$result = "Sorry, PHP needs to be version 5.1.0+. You are using " .
phpversion();
return($result);
}
if( phpversion() < '5.1.0' ) {
$result = "Sorry, PHP needs to be version 5.1.0+. You are using " .
phpversion();
return($result);
}

