473,395 Members | 2,079 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Unlink and variables

Hello,

I created a form to upload files. The formfield contents are stored as
records in an Ascii file "data.dat"; for reasons I am not using a
MySql database.
The upoaded file itself is stored in a directory called "files".
With an administration form I can read all contents of the data.dat
file and select records to delete (one at a time).
So far so good.

Now in one of the record fields the uploaded filename is stored.
To add some new functionality I will not only delete the record but
also delete the specific file mentioned in the filename field.

To realise this I use the standard PHP function unlink(). To extract
the needed filename from the selected record I use the PHP function
explode(); fields are seperated with "|".

By using the explode() function I can select the wanted filename in
this record with the correct array value.

for($i=0;$i<sizeof($records);$i++) //Part of code that writes all
the records back to the data.dat file
{
if($i!=$id) //$id is the value of the choosen record to
delete
fwrite($file,$records[$i]); //write unselected records to data.dat
else // extract the wanted filename in specific record
{
$columns = explode("|",$records[$id]);
//$filename = "TryMe.txt"; //Alternative used for testing
$filename = $columns[sizeof($columns)-1];
echo "$filename"; //echo to screen for testing
if(unlink("../files/$filename"))
echo "The file $filename is succesfully deleted";
//echo to screen for testing
}//else
}//for

Now the problem:

Running this code -in the else loop- the unlink function generates
an error. However the echo displays the correct filename on the
screen.

The oddest thing is when I seperately copy a testfile named TryMe.txt
into the files directory and then run the same code using $filename =
"TryMe.txt" instead of $filename = $columns[sizeof($columns)-1];
things work fine. The result is that echo displays the correct
filename and the
file TryMe.Txt is deleted from the ../files directory!!

(To activate code I then choose a random record to delete in the
administration.)

Summarized:
$filename = "TryMe.txt"; - unlink runs fine
ref. screen output: echo, echo:
===============================================
.../files/TryMe.txtThe file TryMe.txt is succesfully deleted
===============================================

$filename = $columns[sizeof($columns)-1]; - unlink generates error.
ref. screen output: echo, Warning:
================================================
.../files/10_16_40_boef.gif
Warning: unlink() failed (Invalid argument) in c:\program
files\....\admin\delete_file_rec.php on line 43
=================================================

Is there anybody who can help me out and give me a clue??
Thanks in advance.....
Jul 17 '05 #1
2 6668
Eric wrote:
else // extract the wanted filename in specific record
{
$columns = explode("|",$records[$id]);
//$filename = "TryMe.txt"; //Alternative used for testing
$filename = $columns[sizeof($columns)-1]; [...] Is there anybody who can help me out and give me a clue??


Maybe there's some extra characters in $filename.

Try

$filename = trim($filename);

to remove unwanted spaces and/or newlines.
HTH

--
I have a spam filter working.
To mail me include "urkxvq" (with or without the quotes)
in the subject line, or your mail will be ruthlessly discarded.
Jul 17 '05 #2
Pedro <he****@hotpop.com> wrote in message news:<bl************@ID-203069.news.uni-berlin.de>...
Eric wrote:
else // extract the wanted filename in specific record
{
$columns = explode("|",$records[$id]);
//$filename = "TryMe.txt"; //Alternative used for testing
$filename = $columns[sizeof($columns)-1];

[...]
Is there anybody who can help me out and give me a clue??


Maybe there's some extra characters in $filename.

Try

$filename = trim($filename);

to remove unwanted spaces and/or newlines.

Hello Pedro,

Thanks for the advise. Solution works fine, problem solved!!

Regards,
Eric
Jul 17 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
by: 3A Web Hosting | last post by:
Hi Folks I'm trying to delete a file. unlink('../images/photos/1967_GT_500_Shelby_Mustang.jpg'); That works $fm = "../images/photos/1967_GT_500_Shelby_Mustang.jpg"; unlink($fm); That...
1
by: Chamomile | last post by:
I am having trouble getting unlink() to work on my local machine (win 2000, Apache, php 4.2.2) when I invoke unlink() in order to change a file name during a 'picture edit' change from a form...
4
by: rbt | last post by:
Can someone detail the differences between these two? On Windows which is preferred? Also, is it true that win32api.DeleteFile() can remove the 'special' files located in the 'special' folders...
6
by: Benjamin | last post by:
Hello, I'm running PHP 5.2.0 as a Apache 2.2 server module. When, I try to unlink I get this: "Warning: unlink(file.txt) : Permission denied..." What and how do I change this so it works? Thanks
4
by: nitinpatel1117 | last post by:
Hi I am trying to delete a csv file using the unlink() function, but i keep getting a permission denied warning Warning: unlink(UsedNOS200704191.CSV): Permission denied in...
1
by: fcaserio | last post by:
Is there any PHP.INI config or windows permission (win 2003) that can prevent PHP to unlink files with the system path? unlink works with relative path: @unlink("temp\0000058.txt") but it is...
15
by: Morteneistrom | last post by:
Im a complete n00b at PHP so please forgive me if this i a stupid question Why wont the following work. PHP Code: <?php foreach (glob('../images/profil/*.jpg') as $filename) { echo...
11
by: byteoart | last post by:
I'm a newbie to php. I am trying to delete a file from the server that I put there (one file, not the whole directory). I am using unlink ($filename); I did the path as a relative path as...
18
by: Coffee Pot | last post by:
Thanks for any advice. ~ CP
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.