| | |
How we can upload a text file or word file using php Code???
Please support our PHP advertiser: PostgreSQL or MySQL? Compare and contrast the two most popular open source databases
![]() |
•
•
Join Date: Feb 2009
Posts: 130
Reputation:
Solved Threads: 0
Hi all,
Yesterday i was working in which i need some application in which we can upload image file in our system. That is working very well.
But now i want to upload a notepad text file or ms-word file from system to server.
Means I want to upload a text file that can be in .txt, .xls or .doc format. That i want to upload from my system and after uploading that file and i want to show that file on that page from which page i am uploading that file.
All of this i want to do using PHP code . I know just i should use move_upload function for image uploading . But i do not know in correct function of uploading text files how i should use this function.
So Please help me to solve this problem. I will be thankful of that person who will he help me on this topic because i am doing such type of work first time.
So please help me.
Thanks,
Gagan
Yesterday i was working in which i need some application in which we can upload image file in our system. That is working very well.
But now i want to upload a notepad text file or ms-word file from system to server.
Means I want to upload a text file that can be in .txt, .xls or .doc format. That i want to upload from my system and after uploading that file and i want to show that file on that page from which page i am uploading that file.
All of this i want to do using PHP code . I know just i should use move_upload function for image uploading . But i do not know in correct function of uploading text files how i should use this function.
So Please help me to solve this problem. I will be thankful of that person who will he help me on this topic because i am doing such type of work first time.
So please help me.
Thanks,
Gagan
•
•
Join Date: Jun 2009
Posts: 68
Reputation:
Solved Threads: 10
if you uploaded a file, $_FILES["filevalue"]["type"] gives you back your file's type. If you upload a word doc, its type is application/msword:
how to check it its allowed:
$allowed_types=array( "image/jpeg", "image/gif", "image/png", "text/plain", "application/msword", "application/vnd.ms-excel");
how to check it its allowed:
if(isset($_FILES["filevalue"]["type"]))
{
if(! in_array($_FILES["filevalue"]["type"] , $allowed_types))
{
die("You need to upload word/excel/plain text/ images only");
}
} Last edited by djjjozsi; Jun 9th, 2009 at 10:37 am.
•
•
Join Date: Dec 2007
Posts: 5
Reputation:
Solved Threads: 0
yes their is the same way to like upload images as well upload file on the server you have to get the properties of the file
<URL SNIPPED>xperts
php Syntax (Toggle Plain Text)
list($width, $height, $type, $attr) = getimagesize($_FILES['img']['tmp_name']);
Last edited by peter_budo; Jun 9th, 2009 at 10:39 am. Reason: Keep It On The Site - Do not manually post "fake" signatures in your posts. Instead, you may create a sitewide signature within the user control panel.
![]() |
Similar Threads
- help executing a .wav file with php code (PHP)
- insert csv file into mysql through php (PHP)
- embedding an excel file into word and intelligently linking it the template (Visual Basic 4 / 5 / 6)
- how to modify my code to get every word & previos word from file? please help (Python)
- how to upload text file's data on specific IP .and download in database (C#)
- Help: importing text file to a word doc using array (Java)
- Find a word in a file (Python)
- I Need Help Please. Adding PHP Code To My Site. (PHP)
Other Threads in the PHP Forum
- Previous Thread: Import events to Outlook calendar/ Apple calendar
- Next Thread: Populate form with data from database
Views: 1130 | Replies: 4
| Thread Tools | Search this Thread |
Tag cloud for PHP
.htaccess access ajax apache api array beginner binary broken cakephp checkbox class cms code cookies cron curl database date directory display download dynamic ebooks echo email error file files folder form forms function functions google href htaccess html image include insert integration ip java javascript joomla js limit link login loop mail mediawiki menu methods mlm mod_rewrite multiple mysql oop parse paypal pdf php problem query radio random recursion regex remote script search select server sessions sms soap source space speed sql stored structure subdomain syntax system table tutorial update updates upload url validation validator variable video web xml youtube






