Jump to content

[SOLVED] read/load local file in php?


menriquez

Recommended Posts

Here is the php.net example

 

<?php
// get contents of a file into a string
$filename = "/usr/local/something.txt";
$handle = fopen($filename, "r");
$contents = fread($handle, filesize($filename));
fclose($handle);
?>

 

 

http://www.php.net/manual/en/function.fread.php

yes thats i guess what they call a "file picker" control in some IDE i used once...for example in phpmyadmin when you import a sql file, for example, it pops up a file picker so you can select the *.sql from your local harddrive to to import into the remote db.

 

thats what ideally i would want.

 

thxs,

- mark

oh, so your talking about files on your local computer? Not located on the server?

Uploading the file is fairly easy. What do you want to do with it once it's on the server? Are you looking to upload only text files then manipulate them once they're there?

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.