Hi there,
My doubt is simple, but seems without solution for me!
I just put a button on my form, that allows user to be driven to the homepage if he clicks there. Then, the only thing the script should do is open index.html file.
What I did:
ini_set('allow_url_fopen','1');
$filename = "index.html";
$fd = fopen ($filename, "r") or die("Could not open file"); }
But the script simply does nothing.
Where is my mistake?
Thanks!