# http-headers/1.13.4/views/header.php

HTTP Headers, version 1.13.4. 24 lines.

- Page: https://pluginprobe.com/plugins/http-headers/1.13.4/code/views/header.php
- Raw: https://pluginprobe.com/plugins/http-headers/1.13.4/raw/views/header.php
- Modified: 2018-01-04T21:33:02+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/http-headers/1.13.4/code/views/header.php#L10-L20`.

```php
<?php 
if (!defined('ABSPATH')) {
    exit;
}
include dirname(__FILE__) . '/includes/config.inc.php';
include dirname(__FILE__) . '/includes/breadcrumbs.inc.php';
?>

<section class="hh-panel">
	<form method="post" action="options.php">
	    <table class="form-table hh-table">
			<tbody>
			<?php
			$header_file = sprintf('%s/%s.php', dirname(__FILE__), basename($_GET['header']));
			if (is_file($header_file))
			{
				include $header_file;
			}
			?>
			</tbody>
		</table>
		<?php submit_button(); ?>
	</form>
</section>
```
