|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-08-22 10:32 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 11:00:01 2025 UTC |
I have enclosed two snippets of code from two files. The file is uploaded, but gets corrupted along the way. ---------------------------------------------------------- echo "<FORM name=\"add\" action=\"newproductsadd.php\" method=\"post\" enctype=\"multipart/form-data\">"; echo "<TABLE width=\"93%\" class=\"contenttext\">"; echo "<TR><TD><b>Image</b></TD><TD><input type=\"file\" name=\"newimage\"></TD></TR>"; echo "<TR><TD><b>Alternative Text</b></TD><TD><input type=\"text\" name=\"newalt\"></TD></TR>"; echo "<TR><TD><b>Product Text</b></TD><TD><input type=\"text\" name=\"newtext\"></TD></TR>"; echo "<TR><TD align=\"right\"><input type=\"Submit\" name=\"Submit\" value=\"Add\"</TD> <TD><input type=\"Reset\" name=\"Reset\" value=\"Reset\"></TD></TR>"; echo "</TABLE></FORM>"; ----------------------------------------------------------- require "../connect.php"; echo "Uploading new image...<BR><BR>"; $url = "newproductimages/$newimage_name"; copy($newimage, "../$url"); $sql = "INSERT INTO newproducts (image, text, alt) VALUES ('$url','$newtext','$newalt')"; $exc = MYSQL_QUERY($sql) OR DIE ("Failed to $sql"); echo "Product added successfully.";