You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<?php
|
|
|
|
include "config.php";
|
|
|
|
include __ROOT__ . "/database/DbUtil.php";
|
|
|
|
|
|
|
|
echo <<<EOF
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>菜鸟教程(runoob.com)</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<form action="/api/BaiduImage.php" method="post" enctype="multipart/form-data">
|
|
|
|
<label for="file">文件名:</label>
|
|
|
|
<input type="file" name="file" id="file"><br>
|
|
|
|
<input type="submit" name="submit" value="提交">
|
|
|
|
</form>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
EOF;
|
|
|
|
|
|
|
|
|