I am trying to create this script that would delete the filename from a folder whose name is contained inside the $id variable. NOt sure why its not working:
Code:
unlink('/userstash/$id' . $fn);
|
|
||||
|
Use double quotes instead of single quotes, in other words:
|
|||
|
|
|
Take care that you properly build the string for your path and then add some error checking so your script informs you when something goes wrong and tells you about the filename:
|
|||||
|
$idand$fncontain exactly? What does a test output show you? (There might be a slash missing) – Pekka 웃 Aug 5 '11 at 13:21$fn = '/../../etc/passwd'– knittl Aug 5 '11 at 13:22