View Single Post

  #5 (permalink)  
Old 01-22-2007
marce1972
 
Posts: n/a
Default Re: How to delete a file in my web server via php


Floortje wrote:
> Janwillem Borleffs schreef:
> > marce1972 wrote:
> >> Hi to all, that's my question I have mysql database and a web page to
> >> upload files to my webpage, I know how to delete them from the
> >> database, but didnt find the code to delete them from the web server.
> >> Please help me with this code.
> >>

> >
> > The only way to do this through HTTP is to create a remote script that
> > accepts parameters and uses these to select and delete the file. There's
> > also a HTTP DELETE method, but I have never encountered a server which
> > supports it.
> >
> >
> > JW

>
> shortest way :
> @unlink($file);
>
> Make sure to check the input first
>
> --
> Arjen
> http://www.hondenpage.com


Do I rite this on my php code as you wrote it?

$nom=$_POST['numero'];
$sql="DELETE FROM canciones WHERE idcancion='$nom';";
mysql_query($sql) or die ("problema con borrado");
$arch=$_POST['ref'];
@unlink($arch);

Is this correct
Thanks I'll download the other option webdav too to see if it works

regards

Marcelo

Reply With Quote