Jump to content

File upload and download


btrsrinivasarao

Recommended Posts

Hi all,

 

I am new to PHP. I am facing problem while upload microsoft word. I am using blob(medium) to upload word document in to mysql.

I am successful in uploading file.I can see the size in database. But i am getting problem while downloading. it is saying some error.

style.css problem some thing like this. could anyone please post the php script to solve my problem

 

THank you in advance.

 

Regards,

Srinivas

Link to comment
Share on other sites

http://www.phpfreaks.com/forums/index.php/topic,6264.0.html

 

2. Don't ask someone to write or re-write a script for you, unless you are posting a message to the PHPFreelancing Forum.  The forums are not the place to request XYZ script.  This is a community of people learning PHP, and not a script location service.  Try searching sourceforge, phpclasses, hotscripts, or Google.

Link to comment
Share on other sites

fine you want something, I'm going to try it really simple:

 

<?php

$id = $_GET['id'];

$array = mysql_fetch_array(mysql_query("SELECT * FROM documents WHERE id = '$id' LIMIT 1");

header("Content-type: application/msword");

print($array['file']);

?>

 

I have no idea if it works, I never tested it, I just threw something together, tell me if it works though, it should force a file download, save it with a .doc extention, and try to open it.

 

EDIT: Don't forget to add your SQL connection strings.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.