Hi there...
I have been coding a file upload utility (yes beat me now - in dreamweaver). Now what I am trying to do is delte a file at the same time as I delete the record from the database (that references the file)... how would i go about this?
for the file, see [man]unlink()[/man]
For the row, something like
$result=mysql_query( "DELETE FROM sometable WHERE filename='$filename'" );
thanks for getting me into the right direction. I now need to figure out how to integrate it with my other code.