Reputation: 47
I have a form inside of a file on my website. This file is in a directory called "blog", but I want my file_put_contents to go to the home page on my website. Here is what I have:
file_put_contents("enm185.tk/index.php","example code")
This is inside my file, which is at enm185.tk/blog/index.php. Is there any way to get this to work?
Upvotes: 1
Views: 57
Reputation: 5151
You can either use an absolute path, or ..
to go up a directory:
file_put_contents('../index.php', 'example code');
Upvotes: 3