[PHP] Display Image

2009-05-25 Thread Vernon St . Croix

I am trying to send images to my browser using the header function, but keep on 
getting 'No image Available'.

Can someone please help!!
_
View your Twitter and Flickr updates from one place – Learn more!
http://clk.atdmt.com/UKM/go/137984870/direct/01/-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Display Image

2001-08-18 Thread Seb Frost

I always split it up if I'm having errors...

echo "";
echo $row["description"];

- seb


- Original Message -
From: "Chris Schneck" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Saturday, August 18, 2001 7:29 PM
Subject: Fw: [PHP] Display Image


> echo "" . $row["description"] . "
>
>
> - Original Message -
> From: "Andonny" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Saturday, August 18, 2001 7:27 PM
> Subject: [PHP] Display Image
>
>
> > Hi,
> > I tried below to display the picture on the webpage. I have in the
pcture
> > column a http address.
> >
> > echo "" . $row["description"] . "
> >
> > and I get this:
> >
> > Parse error: parse error, expecting `T_STRING' or `T_VARIABLE' or
> > `T_NUM_STRING'
> >
> > Your help is very much appreciated.
> > Andonny
> >
> >
> >
> > --
> > 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]
> >
>
>
> --
> 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]
>


--
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]


-- 
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]




Re: [PHP] Display Image

2001-08-18 Thread Andonny

Thanks for your reply.
This is the whole line and I am not sure which one to take out
echo "" . $row["description"] . "";

Andonny

Seb Frost <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> well you've got that unmatched " at the end...
>
> - seb
>
> -Original Message-
> From: Andonny [mailto:[EMAIL PROTECTED]]
> Sent: 19 August 2001 03:28
> To: [EMAIL PROTECTED]
> Subject: [PHP] Display Image
>
>
> Hi,
> I tried below to display the picture on the webpage. I have in the pcture
> column a http address.
>
> echo "" . $row["description"] . "
>
> and I get this:
>
> Parse error: parse error, expecting `T_STRING' or `T_VARIABLE' or
> `T_NUM_STRING'
>
> Your help is very much appreciated.
> Andonny
>
>
>
> --
> 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]
>



-- 
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]




Fw: [PHP] Display Image (correcting myself) :P

2001-08-18 Thread Chris Schneck


echo "" . $row["description"] . "";

- Original Message -
From: "Chris Schneck" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Saturday, August 18, 2001 7:29 PM
Subject: Fw: [PHP] Display Image


> echo "" . $row["description"] . "
>
>
> - Original Message -
> From: "Andonny" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Saturday, August 18, 2001 7:27 PM
> Subject: [PHP] Display Image
>
>
> > Hi,
> > I tried below to display the picture on the webpage. I have in the
pcture
> > column a http address.
> >
> > echo "" . $row["description"] . "
> >
> > and I get this:
> >
> > Parse error: parse error, expecting `T_STRING' or `T_VARIABLE' or
> > `T_NUM_STRING'
> >
> > Your help is very much appreciated.
> > Andonny
> >
> >
> >
> > --
> > 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]
> >
>
>
> --
> 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]
>


-- 
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]




Fw: [PHP] Display Image

2001-08-18 Thread Chris Schneck

echo "" . $row["description"] . "


- Original Message - 
From: "Andonny" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Saturday, August 18, 2001 7:27 PM
Subject: [PHP] Display Image


> Hi,
> I tried below to display the picture on the webpage. I have in the pcture
> column a http address.
> 
> echo "" . $row["description"] . "
> 
> and I get this:
> 
> Parse error: parse error, expecting `T_STRING' or `T_VARIABLE' or
> `T_NUM_STRING'
> 
> Your help is very much appreciated.
> Andonny
> 
> 
> 
> -- 
> 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]
> 


-- 
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]




RE: [PHP] Display Image

2001-08-18 Thread Seb Frost

well you've got that unmatched " at the end...

- seb

-Original Message-
From: Andonny [mailto:[EMAIL PROTECTED]]
Sent: 19 August 2001 03:28
To: [EMAIL PROTECTED]
Subject: [PHP] Display Image


Hi,
I tried below to display the picture on the webpage. I have in the pcture
column a http address.

echo "" . $row["description"] . "

and I get this:

Parse error: parse error, expecting `T_STRING' or `T_VARIABLE' or
`T_NUM_STRING'

Your help is very much appreciated.
Andonny



-- 
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]


-- 
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]




[PHP] Display Image

2001-08-18 Thread Andonny

Hi,
I tried below to display the picture on the webpage. I have in the pcture
column a http address.

echo "" . $row["description"] . "

and I get this:

Parse error: parse error, expecting `T_STRING' or `T_VARIABLE' or
`T_NUM_STRING'

Your help is very much appreciated.
Andonny



-- 
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]