I'm new to PHP. I want to delete a file from a folder in the parent of my path. I tried to do this with 'unlink' but failed.
How can I delete the '1.mp3' file in the admin/Records/mp3 folder while working on the index.php page, as in the image below.

index.phpis at the root of your project, so you could just do$projectRoot = realpath(__DIR__);to get the full pathname of the root, and then add the rest of the directories + filename to that.