update now.';
} else {
echo '
Please
renew now to get the latest version.';
}
?>
=' );
}
/**
* Show a message if the browser or PHP version is below the recommendations.
*
* @since 4.0.02
* @return void
*/
private static function php_version_notice() {
$message = array();
if ( version_compare( phpversion(), '7.0', '<' ) ) {
$message[] = __( 'The version of PHP on your server is too low. If this is not corrected, you may see issues with Formidable Forms. Please contact your web host and ask to be updated to PHP 7.0+.', 'formidable' );
}
$browser = self::get_server_value( 'HTTP_USER_AGENT' );
$is_ie = strpos( $browser, 'MSIE' ) !== false;
if ( $is_ie ) {
$message[] = __( 'You are using an outdated browser that is not compatible with Formidable Forms. Please update to a more current browser (we recommend Chrome).', 'formidable' );
}
foreach ( $message as $m ) {
?>