-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreate_planet.php
42 lines (25 loc) · 889 Bytes
/
create_planet.php
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
if(isset($_POST['chose'])){
if($_POST['cat']=="wood"){
header("Location:create_WP.php?name=".$_POST['name']."&radius=".$_POST['radius']);
}else{
header("Location:create_GP.php?name=".$_POST['name']."&radius=".$_POST['radius']);
}
}
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><style id="stndz-style"></style>
<title>Materials gallery | seen.js</title>
</head>
<body style="">
<form action="create_planet.php" method="post">
name:<input type="text" name="name" placehoder="Please enter" required><br>
radius:<input type="number" name="radius" value="200"><br>
<input type="radio" name="cat" value="wood" required>類木行星<br>
<input type="radio" name="cat" value="ground" required>類地行星<br>
<input type="hidden" name="chose" value="chose">
<input type="submit">
</form>
</body>
</html>