about summary refs log tree commit diff
path: root/sourcecodes/input_error.php
blob: b471a3328d121ebe025a5269424beda52707cdbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php 

$key=$_POST["My_key"];
if($key=="")
  $key="ab";//uniqid("");

include("header_new.inc");
?>

<!-- Site navigation menu -->
<ul class="navbar">
  <li><a href="bn_file_load_gom.php">Learn a network model from data</a>
  <li><a href="home_upload.php">Make predictions using a known structure</a>  
  <li><a href="help.php">Help</a>
  <li><a href="faq.php">FAQ</a>
  <li><a href="home.php">Home</a>


</ul>

<div id="outer">
<!-- Main content -->
<br>
  <h1>There was an error with your input. Input data can only contain letters, numbers, underscores (_), periods (.), and whitespace.</h1>
</div>
</body>
</html>