This is a snippet from my code.

$FILE = "http://www.somehost.com";;

$fp = fopen($FILE, "r");

if(!$fp){
 print("Somethings screwy");
}
else{
 do stuff
}

Any suggestions?

Paul

Speedboy wrote:

> > I'm sure http://www.php.net exists.  :)
>
> No, what my sentence meant was you're trying to do some operations on a
> mis-typed file descripter?
>
> $fp = fopen...
> fputs($fp2...
>          ^- There should be no 2.
>
> Possibly something like that?
>
> > > > > with fopen().  Everytime I try to use fopen, I get some weird error
> > > > > messages.  If I do fopen("http://www.php.net";, "r") - I get this error
> > > > > message: Undefined error:
> > > > > If I try doing
> > > > > fopen("http://www.somehost.com/~myname/somefile.php?var=value";, "r") - I
> > > > > get this message:   Bad file descriptor
> > >
> > > You're trying to do operations on a file descripter that doesn't exist?


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to