PCTechTalkhttp://www.pctechtalk.com/forums/

Go Back   PCTechTalk > PC Tech > Web Related

Reply
 
LinkBack Thread Tools Display Modes
Old 11-07-2004, 05:42 PM   #1 (permalink)
Moo indeed.
 
killer_cow's Avatar
 
Join Date: Dec 2002
Location: In a grassy field :D
Posts: 140
killer_cow
PHP fputs() error; working on Home Grown IIS5.1 server

Hey guys,

Problemo:

PHP Code:
2  $file 'txt.txt' ;
3  $fp fopen($file"w") ;
4  $hello "Hello Writing File" ;
5  fputs($file$hello) ;
6  fclose($fp) ; 
Simple code, stoopid error message

Quote:
Warning: fputs(): supplied argument is not a valid stream resource in D:\WEB\www\PHPwork\hello.php on line 5
As stated above Im running it off of an IIS server i setup at home. I have tryed setting the folder to Read Enabled, Write Enabled, Browsing enabled etc.. basically allowing everything. And I still have problem. It must be a problem with my code but i just cant see what I've done wrong, tho im a PHP newber so Its probabily pretty obvious to one of you guys.

Thanx for help.

K-C
__________________
killer_cow is offline   Reply With Quote
Old 11-08-2004, 08:49 AM   #2 (permalink)
Da House Nerd
 
greffov's Avatar
 
Join Date: Dec 1969
Location: One CPU Lane
Posts: 3,512
greffov will become famous soon enough
LOL:

2 $file = 'txt.txt' ;

3 $fp = fopen($file, "w") ;

4 $hello = "Hello Writing File" ;

5 fputs($file, $hello) ;

6 fclose($fp) ;


look closely at line 5, it should read fputs($fp, $hello);



small mistake, lots of nosehair being pulled out
__________________
Linux virusscanner detected a virus:
Windows 95 ... delete [Y/n] y
~
~

:wq
greffov is offline   Reply With Quote
Old 11-08-2004, 04:25 PM   #3 (permalink)
Moo indeed.
 
killer_cow's Avatar
 
Join Date: Dec 2002
Location: In a grassy field :D
Posts: 140
killer_cow
LMAO!!! o dear god help me! I knew i was missing somethin. What was I on lol!
__________________
killer_cow is offline   Reply With Quote
Old 11-08-2004, 04:27 PM   #4 (permalink)
Moo indeed.
 
killer_cow's Avatar
 
Join Date: Dec 2002
Location: In a grassy field :D
Posts: 140
killer_cow
Thanx greffov
__________________
killer_cow is offline   Reply With Quote
Old 11-09-2004, 02:13 AM   #5 (permalink)
Da House Nerd
 
greffov's Avatar
 
Join Date: Dec 1969
Location: One CPU Lane
Posts: 3,512
greffov will become famous soon enough


you're welcome
__________________
Linux virusscanner detected a virus:
Windows 95 ... delete [Y/n] y
~
~

:wq
greffov is offline   Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT -5. The time now is 06:40 AM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
2001 PCTechTalk