Re: [PHP] generate a image link with php

2004-02-19 Thread Dominique ANOKRE
ok good now - solved !! thansk you - Original Message - From: "Seba" <[EMAIL PROTECTED]> To: "Dominique ANOKRE" <[EMAIL PROTECTED]> Sent: Thursday, February 19, 2004 11:23 AM Subject: Re: [PHP] generate a image link with php > It is better: &

RE: [PHP] generate a image link with php

2004-02-19 Thread Nguyen Huu Hoa
M To: Php List Subject: [PHP] generate a image link with php how to generate a image link with php ? i use this but it returns errors : print(""); print("img src="image.jpg"); print(""); Thanks -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] generate a image link with php

2004-02-19 Thread Stuart
Dominique ANOKRE wrote: how to generate a image link with php ? i use this but it returns errors : print(""); print("img src="image.jpg"); print(""); Try... print(''); print(''); print(''); And I'd suggest getting a beginners book from the selection here: http://php.net/books -- Stuart -- PHP

[PHP] generate a image link with php

2004-02-19 Thread Dominique ANOKRE
how to generate a image link with php ? i use this but it returns errors : print(""); print("img src="image.jpg"); print(""); Thanks