Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a problem I tried to retrieve a file with this code:

<?php


$path= "./uploadedfiles/";
$dir= dir($path);

while ($file = $dir->read()) {

        echo $file . "<a href=deletefile.php?file=$file>Delete</a><br>";         
}
$dir->close();
?>

and my deletefile.php

<?php
$file = $_GET['file'];

echo $file;

$path =  'C:/wamp/www/project/uploadedfiles/'.$files;

if(unlink($path)){

    echo "File deleted";
}else{
    echo "Erro no uploaded";

}


?>

The problem is that with the line $file = $_GET['file'];, if my files name is document name.pptx (space included) the $_GET just takes document, so my file never gets deleted, can someone help me? Help really appreciated

share|improve this question

2 Answers

up vote 0 down vote accepted

Try using urlencode() and urldecode(), this should encode the space in the filename when passing it over the URL

So

echo $file . "<a href=deletefile.php?file=" . urlencode($file) . ">Delete</a><br>";

and

$file = urldecode($_GET['file']);
share|improve this answer
thanks for answering It was very useful – bentham Jul 27 '11 at 23:33
@ReOsless: if you also insist on quoting the attribute it get's my vote :) – Wrikken Jul 27 '11 at 23:42

You need to change this line:

echo $file . "<a href=deletefile.php?file=$file>Delete</a><br>";

To

echo $file . '<a href="deletefile.php?file='.urlencode($file).'">Delete</a><br>';

See urlencode. It will convert your space to %20, so that it can be sent over GET.

share|improve this answer
thanks for your answers It really help me – bentham Jul 27 '11 at 23:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.