Example #1
0
<?php

include "functions.php";
//Parse local scan
if (isset($_POST['paste'])) {
    $lscan = buildFromListNew(explode("\n", $_POST['paste']));
    $key = saveLScan($lscan);
    file_put_contents("scans/" . $key, $_POST['paste']);
    header('Location: /local/' . $key);
}
saveHit();
?>
<head>
	<meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="description" content="">
    <meta name="author" content="">

	<!-- Latest compiled and minified CSS -->
	<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
	<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
	<?php 
include "../switcher.php";
?>
	<link rel="stylesheet" href="/local/css/custom.css">
	<!-- Optional theme -->
	<!-- Latest compiled and minified JavaScript -->
	
	<!-- Custom Page CSS -->
</head>
Example #2
0
<?php

include "functions.php";
//Parse local scan
if (isset($_POST['paste']) && isset($_POST['system'])) {
    $lscan = buildFromListNew(explode("\n", $_POST['paste']));
    $key = saveLScan($lscan, $_POST['system']);
    file_put_contents("scans/" . $key, $_POST['paste']);
    header('Location: /local/' . $key);
}
//saveHit();
?>
<head>
    <title>EVE Tools - Localscan</title>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="description" content="">
    <meta name="author" content="">

	<!-- Latest compiled and minified CSS -->
	<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
	<script src="https://cdnjs.cloudflare.com/ajax/libs/typeahead.js/0.11.1/typeahead.bundle.min.js"></script>
	<script src="https://cdnjs.cloudflare.com/ajax/libs/PapaParse/4.1.2/papaparse.min.js"></script>
	<script src="https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/4.0.3/handlebars.min.js"></script>
	<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
	<link rel="stylesheet" href="/local/css/typeaheadjs.css">
	<?php 
include "../switcher.php";
?>
	<link rel="stylesheet" href="/local/css/custom.css">