12 lines
		
	
	
		
			229 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			229 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
header ("X-XSS-Protection: 0");
 | 
						|
 | 
						|
// Is there any input?
 | 
						|
if( array_key_exists( "name", $_GET ) && $_GET[ 'name' ] != NULL ) {
 | 
						|
	// Feedback for end user
 | 
						|
	$html .= '<pre>Hello ' . $_GET[ 'name' ] . '</pre>';
 | 
						|
}
 | 
						|
 | 
						|
?>
 |