HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: /var/www/html/TriadGov/wp-content/plugins/wpforms/templates/admin/payments/hidden-field.php
<?php
/**
 * Display a hidden field for the purpose of form submission.
 *
 * @since 1.8.4
 *
 * @var string $name  Name of the hidden field.
 * @var array  $value Value of the hidden field.
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

// Leave early if no field name or value is provided.
if ( empty( $name ) || empty( $value ) ) {
	return;
}

?>

<input
	type="hidden"
	name="<?php echo esc_attr( $name ); ?>"
	value="<?php echo esc_attr( $value ); ?>"
/>

<?php
/* Omit closing PHP tag at the end of PHP files to avoid "headers already sent" issues. */