-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathzxphp.php
More file actions
42 lines (42 loc) · 1.07 KB
/
zxphp.php
File metadata and controls
42 lines (42 loc) · 1.07 KB
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
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" id="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<?php
include "config.php";
start();
?>
<div style="width: 100%" class="mdui-container-fluid">
<div style="margin: auto;;padding: 5px;background: transparent;" class="mdui-card mdui-shadow-24">
<form method="POST" action="zx.php">
<center><h1 style="color: #5DB1FF;">PHP执行测试</h1></center>
<div class="panel-body"> <pre style="text-shadow: initial;">
<textarea name="code" id="edit" contenteditable="true">
<?php
echo "Hello World!";
?>
</textarea>
</pre></div>
<button id="button" class="mdui-btn mdui-float-right mdui-shadow-24">执行</button>
</form>
<br>
<pre style="width: 100%;">
接口:网站/zx.php
方式:POST
参数:code=php代码
懒得写UI了,反正看得懂就可以了
</pre>
</div>
</div></div>
<style>
.mdui-btn{
color: #FFFFFF;
margin: 5px;
background: transparent;
border-radius: 5px;
}
</style>
</body>
</html>