dropfaith Posted September 9, 2008 Share Posted September 9, 2008 I know how to remove images links from the database but how would i also clean up the server so the files are no longer there either.. Link to comment https://forums.phpfreaks.com/topic/123374-delete-from-server/ Share on other sites More sharing options...
Ken2k7 Posted September 9, 2008 Share Posted September 9, 2008 <?php $image_url = "/images/image.gif"; unset($image_url); ?> Link to comment https://forums.phpfreaks.com/topic/123374-delete-from-server/#findComment-637247 Share on other sites More sharing options...
The Little Guy Posted September 9, 2008 Share Posted September 9, 2008 <?php $image_url = "/images/image.gif"; unset($image_url); ?> correction, it is unlink not unset Link to comment https://forums.phpfreaks.com/topic/123374-delete-from-server/#findComment-637271 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.