Просмотр файла code.wh0am1.ru/app/create.php

Размер файла: 678B
<?php
	
	// ---------------------------------------- //
	// ---------------------------------------- //
	// ------- Автор: wh0am1 ------------------ //
	// ------- ICQ: 33232422 ------------------ //
	// ------- Skype: r79954119859 ------------ //
	// ---------------------------------------- //
	// ---------------------------------------- //
	
	$code = isset ( $_POST [ 'code' ] ) ? trim ( $_POST [ 'code' ] ) : NULL;
	
	if ( empty ( $code ) ) {
		print ( 'Empty code...' ) ;
		exit;
	}
	
	$key = unique_key ( ) ;
	
	if ( create_code ( $key, $code ) ) {
		header ( 'Location: /' . $key ) ;
	}
	else {
		print ( 'Error create code...' ) ;
	}
	
?>