1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

webarenaでubuntu その30

Posted at

概要

webarenaでubuntu18.04やってみた。
apache2.4,php7.2やってみた。
ファイルアップロードやってみた。

サンプルコード

<?php
	if (isset($_FILES["pngfile"]))
	{
		if (is_uploaded_file($_FILES["pngfile"]["tmp_name"]))
		{
			move_uploaded_file($_FILES["pngfile"]["tmp_name"], "./png/test.png");
			chmod("./png/test.png", 0644);
		}
?>
<html>
<head>
	<meta charset="utf-8">
	<title>upload</title>
</head>
<body>
	upload ok<br>
	<img src="./png/test.png">
</body>
</html>
<?php
	}
	else
	{
?>
<html>
<head>
	<meta charset="utf-8">
	<title>upload</title>
</head>
<body>
<form action="upload.php" method="post" enctype="multipart/form-data">
	png file: <br />
	<input type="file" name="pngfile" size="30" /><br />
	<input type="submit" value="send" />
</form>
</body>
</html>
<?php
	}
?>

以上。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?