为php mysql上传添加唯一ID

时间:2011-10-21 13:43:42

标签: php mysql unique-key

是否有一种快速方法可以为php mysql上传添加一个唯一的ID-我已经滚动浏览了这些论坛,但希望有一种更简单的方法来实现我的目标。

基本上,我有一个完美的上传 - 我希望为使用mysql中自动递增的唯一ID字段生成的每个项目添加产品代码。

到目前为止,我有以下php:

<?php include 'dbc.php'; page_protect();

if(!checkAdmin()) {header("Location: login.php");
exit();
}

$host  = $_SERVER['HTTP_HOST'];
$host_upper = strtoupper($host);
$login_path = @ereg_replace('admin','',dirname($_SERVER['PHP_SELF']));
$path   = rtrim($login_path, '/\\');

foreach($_GET as $key => $value) {
    $get[$key] = filter($value);
}

foreach($_POST as $key => $value) {
    $post[$key] = filter($value);
}   
?>

<?php 
if($_FILES['photo']) //check if we uploading a file
{
    $target = "images/furnishings/"; 
    $target = $target . basename( $_FILES['photo']['name']); 

    $title = mysql_real_escape_string($_POST['title']); 
    $desc = mysql_real_escape_string($_POST['desc']); 
    $price = mysql_real_escape_string($_POST['price']);  
    $pandp = mysql_real_escape_string($_POST['pandp']);  
    $pic = "images/furnishings/" .(mysql_real_escape_string($_FILES['photo']['name']));
    $productcode = "FUR000" .(mysql_real_escape_string($_POST['id']));
if(move_uploaded_file($_FILES['photo']['tmp_name'], $target)) 
{
    mysql_query("INSERT INTO `furnishings` (`title`, `desc`, `price`, `pandp`, `photo`,`productcode`) VALUES ('$title', '$desc', '$price', '$pandp', '$pic', '$productcode')") ;     

    echo "The product has been added to the furnishings category"; 
} 
else 
{ 
    echo "Please fill out the specifications and select the respective file to upload for the main image"; 

}
} 
?> 

以下HTML:

<form enctype="multipart/form-data" action="addfurn.php" method="POST">
  <table width="100%" border="2" cellpadding="5"class="myaccount">
   <tr>
       <td>Title: </td>
       <td><input type="text" name="title" /></td>
    </tr>
     <tr>
       <td>Description: </td>
       <td><input type="text" name = "desc" /></td>
     </tr>
          <tr>
       <td>Price: </td>
       <td><input type="text" name = "price" /></td>
     </tr>
        <tr>
       <td>P&amp;P: </td>
       <td><input type="text" name = "pandp" /></td>
     </tr>
     <tr>
       <td>Main Image: </td>
       <td><input type="file" name="photo" /></td>
     </tr>
     <tr>
       <td colspan="2"><input type="submit" class="CMSbutton" value="Add" /></td>
     </tr>
  </table>
</form>

现在一切正常 - 代码中唯一的“问题行”是:

$productcode = "FUR000" .(mysql_real_escape_string($_POST['id']));

假设由于尚未生成id,因此无法将其添加到insert查询中 - 因此mysql中的表只会为添加的每个新项返回FUR000。

有没有办法修改此行以在mysql中自动增加,类似于添加新行 - 或者我是否必须为HTML表中的每个项包含唯一代码?

非常感谢任何帮助!

由于 JD

2 个答案:

答案 0 :(得分:1)

你需要2个查询。

首先,插入没有产品代码的数据 接下来,使用mysql_insert_id()获取id 最后,创建您的productcode并使用这个新生成的id更新您的表

但是,我认为在这样的领域没有任何意义。为什么不动态创建呢?

答案 1 :(得分:0)

您想使用生成唯一ID的uniqid。为了安全起见,我建议使用更多的熵。