Open navigation menu
Close suggestions
Search
Search
en
Change Language
Upload
Sign in
Sign in
Download free for days
0 ratings
0% found this document useful (0 votes)
23 views
4 pages
Code Upload Picture
Uploaded by
Hop Huynh
AI-enhanced title
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here
.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
Download
Save
Save code upload picture.docx For Later
Share
0%
0% found this document useful, undefined
0%
, undefined
Print
Embed
Report
0 ratings
0% found this document useful (0 votes)
23 views
4 pages
Code Upload Picture
Uploaded by
Hop Huynh
AI-enhanced title
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here
.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
Carousel Previous
Carousel Next
Download
Save
Save code upload picture.docx For Later
Share
0%
0% found this document useful, undefined
0%
, undefined
Print
Embed
Report
Download
Save code upload picture.docx For Later
You are on page 1
/ 4
Search
Fullscreen
action="<?php print $PHP_SELF?
>" enctype="multipart/form-data" method="post">
Last Name:<br /> <input type="text" name="name" value="" /><br />
Homework:<br /> <input type="file" name="homework" value="" /><br />
<p><input type="submit" name="submit" value="Submit Notes" /></p>
</form>
<?php
define ("FILEREPOSITORY","./");
if (isset($_FILES['homework'])) {
if (is_uploaded_file($_FILES['homework']['tmp_name'])) {
if ($_FILES['homework']['type'] != "application/pdf") {
echo "<p>Homework must be uploaded in PDF format.</p>";
} else {
$today = date("m-d-Y");
if (! is_dir(FILEREPOSITORY.$today)) {
mkdir(FILEREPOSITORY.$today);
}
$name = $_POST['name'];
$result = move_uploaded_file($_FILES['homework']['tmp_name'], FILEREPOSITORY.
$today."/"."$name.pdf");
if ($result == 1)
echo "<p>File successfully uploaded.</p>";
else
echo "<p>There was a problem uploading the homework.</p>";
}
}
}
?>
Code upload 2:
if ($_FILES["file"]["error"] > 0)
{
echo "Error: " . $_FILES["file"]["error"] . "<br />";
}
else
{
echo "Upload: " . $_FILES["file"]["name"] . "<br />";
echo "Type: " . $_FILES["file"]["type"] . "<br />";
echo "Size: " . ($_FILES["file"]["size"] / 1024) . " Kb<br />";
echo "Stored in: " . $_FILES["file"]["tmp_name"];
}
$target_path = "C:/wamp/www/Chuyendeweb/";
$target_path = $target_path . basename( $_FILES['file']['name']);
$_SESSION['target_path'] = $target_path;
$_SESSION['tempinfo'] = $_FILES['file']['tmp_name'];
if(move_uploaded_file($_SESSION['tempinfo'], $_SESSION['target_path'])) {
echo "The file has been uploaded!";
} else{
echo "There was an error uploading the file, please try again!";
}
if ((($_FILES["file"]["type"] == "image/gif")
|| ($_FILES["file"]["type"] == "image/jpeg")
|| ($_FILES["file"]["type"] == "image/pjpeg"))
&& ($_FILES["file"]["size"] < 20000))
{
if ($_FILES["file"]["error"] > 0)
{
echo "Return Code: " . $_FILES["file"]["error"] . "<br />";
}
else
{
echo "Upload: " . $_FILES["file"]["name"] . "<br />";
echo "Type: " . $_FILES["file"]["type"] . "<br />";
echo "Size: " . ($_FILES["file"]["size"] / 1024) . " Kb<br />";
echo "Temp file: " . $_FILES["file"]["tmp_name"] . "<br />";
if (file_exists("upload/" . $_FILES["file"]["name"]))
{
echo $_FILES["file"]["name"] . " already exists. ";
}
else
{
move_uploaded_file($_FILES["file"]["tmp_name"],
"upload/" . $_FILES["file"]["name"]);
echo "Stored in: " . "upload/" . $_FILES["file"]["name"];
}
}
}
else
{
echo "Invalid file";
}
upload anh
$path = 'Baitap/';
$file = null;
for($i=0; $i<sizeof($_FILES["File"]["name"]); $i++)
{
if ($_FILES['File']['error'][$i] > 0)
{
echo "Error !";
}
else if(file_exists($path . $_FILES["File"]["name"][$i]))
{
echo "File exists !";
}
else
{
move_uploaded_file($_FILES['File']['tmp_name'][$i], $path .
$_FILES['File']['name'][$i]);
echo $_FILES['File']['name'][$i];
echo $_FILES['File']['type'][$i];
echo $_FILES['File']['size'][$i];
}
}
You might also like
Principles: Life and Work
From Everand
Principles: Life and Work
Ray Dalio
4/5 (648)
The Gifts of Imperfection: Let Go of Who You Think You're Supposed to Be and Embrace Who You Are
From Everand
The Gifts of Imperfection: Let Go of Who You Think You're Supposed to Be and Embrace Who You Are
Brené Brown
4/5 (1175)
The Glass Castle: A Memoir
From Everand
The Glass Castle: A Memoir
Jeannette Walls
4.5/5 (1856)
Sing, Unburied, Sing: A Novel
From Everand
Sing, Unburied, Sing: A Novel
Jesmyn Ward
4/5 (1267)
The Perks of Being a Wallflower
From Everand
The Perks of Being a Wallflower
Stephen Chbosky
4.5/5 (4103)
Her Body and Other Parties: Stories
From Everand
Her Body and Other Parties: Stories
Carmen Maria Machado
4/5 (903)
Shoe Dog: A Memoir by the Creator of Nike
From Everand
Shoe Dog: A Memoir by the Creator of Nike
Phil Knight
4.5/5 (629)
Steve Jobs
From Everand
Steve Jobs
Walter Isaacson
4.5/5 (1139)
The Emperor of All Maladies: A Biography of Cancer
From Everand
The Emperor of All Maladies: A Biography of Cancer
Siddhartha Mukherjee
4.5/5 (298)
The Yellow House: A Memoir (2019 National Book Award Winner)
From Everand
The Yellow House: A Memoir (2019 National Book Award Winner)
Sarah M. Broom
4/5 (100)
Angela's Ashes: A Memoir
From Everand
Angela's Ashes: A Memoir
Frank McCourt
4.5/5 (943)
The World Is Flat 3.0: A Brief History of the Twenty-first Century
From Everand
The World Is Flat 3.0: A Brief History of the Twenty-first Century
Thomas L. Friedman
3.5/5 (2289)
The Outsider: A Novel
From Everand
The Outsider: A Novel
Stephen King
4/5 (2886)
A Heartbreaking Work Of Staggering Genius: A Memoir Based on a True Story
From Everand
A Heartbreaking Work Of Staggering Genius: A Memoir Based on a True Story
Dave Eggers
3.5/5 (233)
Team of Rivals: The Political Genius of Abraham Lincoln
From Everand
Team of Rivals: The Political Genius of Abraham Lincoln
Doris Kearns Goodwin
4.5/5 (244)
Rise of ISIS: A Threat We Can't Ignore
From Everand
Rise of ISIS: A Threat We Can't Ignore
Jay Sekulow
3.5/5 (144)
Manhattan Beach: A Novel
From Everand
Manhattan Beach: A Novel
Jennifer Egan
3.5/5 (919)
Fear: Trump in the White House
From Everand
Fear: Trump in the White House
Bob Woodward
3.5/5 (836)
John Adams
From Everand
John Adams
David McCullough
4.5/5 (2546)
06 - XML - XSLT
PDF
No ratings yet
06 - XML - XSLT
106 pages
05 - XML - Schemas
PDF
No ratings yet
05 - XML - Schemas
208 pages
02 - XML - Fundamentals
PDF
No ratings yet
02 - XML - Fundamentals
26 pages
03 - XML - DTD
PDF
No ratings yet
03 - XML - DTD
29 pages
Server-Side Web Programming: The Request and Response Objects
PDF
No ratings yet
Server-Side Web Programming: The Request and Response Objects
15 pages
00 - XML - Course Info
PDF
No ratings yet
00 - XML - Course Info
4 pages
Hibernate Query Language (HQL)
PDF
No ratings yet
Hibernate Query Language (HQL)
31 pages
Server-Side Web Programming: The Jakarta Tomcat Web Container and The Netbeans Ide
PDF
No ratings yet
Server-Side Web Programming: The Jakarta Tomcat Web Container and The Netbeans Ide
38 pages
Server-Side Web Programming: Introduction To Sessions
PDF
No ratings yet
Server-Side Web Programming: Introduction To Sessions
24 pages
1 Object Persistence
PDF
No ratings yet
1 Object Persistence
27 pages
JAVA Swing 2nd Edition - Manning
PDF
0% (1)
JAVA Swing 2nd Edition - Manning
903 pages
Server-Side Web Programming: Shopping Carts and The Model-View-Control Architecture
PDF
No ratings yet
Server-Side Web Programming: Shopping Carts and The Model-View-Control Architecture
41 pages
Server-Side Web Programming: Formatting and Internationalization
PDF
No ratings yet
Server-Side Web Programming: Formatting and Internationalization
13 pages
Server-Side Web Programming
PDF
No ratings yet
Server-Side Web Programming
17 pages
Server-Side Web Programming
PDF
No ratings yet
Server-Side Web Programming
18 pages
Lecture 11
PDF
No ratings yet
Lecture 11
8 pages
Server-Side Web Programming: Efficient and Safe Database Access On Web Servers
PDF
No ratings yet
Server-Side Web Programming: Efficient and Safe Database Access On Web Servers
19 pages
Server-Side Web Programming: Introduction To Java Server Pages
PDF
No ratings yet
Server-Side Web Programming: Introduction To Java Server Pages
23 pages
Server-Side Web Programming: Input Validation and Error Handling
PDF
No ratings yet
Server-Side Web Programming: Input Validation and Error Handling
40 pages
Server-Side Web Programming
PDF
No ratings yet
Server-Side Web Programming
18 pages
Server-Side Web Programming: Java Servlets and The Control-View Architecture
PDF
No ratings yet
Server-Side Web Programming: Java Servlets and The Control-View Architecture
26 pages
Server-Side Web Programming: Java Server Pages For Complex Forms
PDF
No ratings yet
Server-Side Web Programming: Java Server Pages For Complex Forms
27 pages
The Unwinding: An Inner History of the New America
From Everand
The Unwinding: An Inner History of the New America
George Packer
4/5 (45)
The Light Between Oceans: A Novel
From Everand
The Light Between Oceans: A Novel
M.L. Stedman
4.5/5 (815)
Little Women
From Everand
Little Women
Louisa May Alcott
4.5/5 (2369)