[function.file]: failed to open stream: No such file or directory
Posted on
16th Feb 2014 07:03 pm by
admin
Okay I wrote this little script to upload a csv file that is located on my webhosts server to a mysql database. Something is wrong because I am getting the following error:
Warning: file(./html/beer/uploads/filename.csv) [function.file]: failed to open stream: No such file or directory in /home/content/d/l/a/dlanden/html/beer/uploads/upload_csv_mysql.php on line 12
insert into sunocoimport values ('')
Did you know?Explore Trending and Topic pages for more stories like this.
Column count doesn't match value count at row 1
I did a syntax check and everything checked out. Here is the code:
$fcontents = file ('./html/beer/uploads/filename.csv');
# expects the csv file to be in the same dir as this script
for($i=0; $i<sizeof($fcontents); $i++) {
$line = trim($fcontents[$i]);
$arr = explode(",", $line);
#if your data is comma separated
# instead of tab separated,
# change the 't' above to ','
$sql = "insert into sunocoimport values ('".
implode("','", $arr) ."')";
mysql_query($sql);
echo $sql ."
n";
if(mysql_error()) {
echo mysql_error() ."
n";
}
}
?>
I am a newbie so any advice would be appreciated!
No comments posted yet
Your Answer:
Login to answer
205
46
Other forums
Help: calling function
Hi,
Is it possible to call a php function on page close?
If yes, could you explain how and whe
pspell
using pspell, is it possible to get words that would be best in the current phrase?
For examp
How to schedule the a job?
Hi,
I have prepared a task ( i.e. a procedure is prepare the file and send the same to con
values in array being escaped
I would like to submit some values - back to the same form for checking before processing...
Unique Visitor Tracking
Hello. Currently, I run a voting site where voters are tracked by their IP address and can only vote
Filtering an Array Based on Value
I have a very simple script set up that pulls data from a database and is output using this code:
PHP and XML image gallery variable issue
I'm trying to display the large image on the same page as the thumbnails, to do that I'm passing a v
add text and number image
hi guys ..
ok see i want the user to add their name and pick a number then click get it and i
Parse String
I need to parse the string below into three variables. How would I do that?
john + 10/20/2008
PHP/Database issue
My friend is helping me make a database where you go to a certain webpage of my site and the page wi