English 中文(简体)
避免在刷新时上传图像
原标题:Avoiding image upload on a refresh

我正在用最简单的图像加载方式工作, 我非常希望保持这种方式, 使用一些简单的php。

代码看起来是这样的

<form action="index.php" method="POST" enctype="multipart/form-data">
<input type="file" name="image">
<input type="submit" value="Upload image">
</form>

<?php
$image = addslashes(file_get_contents($_FILES[ image ][tmp_name]));
mysql_query("INSERT INTO store_images VALUES (  , $image )");
?>

我选择一个图像, 上传它并点击一次/ 两次的刷新。 当我查看“ 存储图像” 表格时, 图像已被上传两次/ 二次 / 三次 / 两次 。

我该如何避免, 而不破坏上传另一幅图像的选择?

最佳回答

开始于 :

请停止以古代 mysql/code> 函数撰写新代码。 它们不再维护, 社区已经开始 < a href=" http://goo. gl/ KJveJ" rel=“ nofolt” > desprecation process 。 相反, 您应该学习 < a href=" http://goo. gl/ vn8zQ" rel=“ nofolpt” > 准备的声明 < a href=" http://php. net/pdo" rel=" nofol" > PDO 或 < a href="http://php. net/mysqli" rel=“ nofol" refol"。 如果您不能确定, < href="http://goo. gl/3gqF9" rel=" nofol" > > this 文章将帮助选择。 如果您想要学习, f freal a real a.

现在,你的问题:

在成功上传图像 header (位置: http://example.com/the/address ) 之后, 您应该重定向。 这甚至可以是同一页。 因为重定向数据不再出现在页面上, 不再被插入 。

问题回答

生成随机数字, 与窗体相似的散列, 并连同您的图像一起插入数据库。 在插入前先检查现有散列的数据库 。

在 db 中首先检查 $$image 的值,只有在没有该值时才进行上传/插入

如果您想要在表格中不复制文件( 这是可取的), 那么创建一个 < a href=" http:// php. net/ manual/ en/ opident. md5- file. php" rel= “ nofollow” >md5 hash , 并将其保存在文件的列中, 使 md5 列独有 。

如果您想要在表格中复制文件, 那么只做与上面完全相同的工作, 只使 md5 列和文件名独有。 这样可以让不同的用户用不同的名称重新插入相同图片 。

如果您想要允许使用同名的文件复制件, 请按@jimpic 的建议做。 这应该允许您或其他用户插入同名文件的复制件, 但只允许您故意这样做 。

切勿在每次插入后重定向到另一页。 如果您可以的话, 最好不要在正常的浏览器后退/ 后退功能中刹车。 对用户来说, 事实上当浏览器看到一页刷新时, 他们的行为会像 2 一样, 并且会激怒人们, 因为后退按钮会问“ 您想要重新显示窗体数据吗 ” 。





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签