Basically im tyring to dynamically create URLs for special users so they get their own URL.
Creating the page worked fine using
fopen($filename, 'w+');
But when I try to write something this page using
fwrite($filename,"Some text");
I get the following error
Warning: fwrite(): supplied argument is not a valid stream resource in...
Any ideas ?
fwrite() errors - Permissions Help
Moderator: General Moderators
- feyd
- Neighborhood Spidermoddy
- Posts: 31559
- Joined: Mon Mar 29, 2004 3:24 pm
- Location: Bothell, Washington, USA
[url=http://forums.devnetwork.net/viewtopic.php?t=30037]Forum Rules[/url] Section 1.1 wrote:1. Select the correct board for your query. Take some time to read the guidelines in the sticky topic.
fopen($filename, 'w+');
to
fopen($filename, "w+");
to
fopen($filename, "w+");
Set Search Time - A google chrome extension. When you search only results from the past year (or set time period) are displayed. Helps tremendously when using new technologies to avoid outdated results.