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(a href=image.htm);
print(img src=image.jpg);
print(/a);
Try...

print('a href=image.htm');
print('img src=image.jpg');
print('/a');
And I'd suggest getting a beginners book from the selection here: 
http://php.net/books

--
Stuart
--
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 Nguyen Huu Hoa
I think it should the following:
print Create image link\n;
print(a href=\image.htm\);
print(img src=\image.jpg\);
print(/a);

Nguyen,
-Original Message-
From: Dominique ANOKRE [mailto:[EMAIL PROTECTED] 
Sent: Thursday, February 19, 2004 6:21 PM
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(a href=image.htm);
print(img src=image.jpg);
print(/a);

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 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:
 
 print(a href='image.htm');
 print(img src='image.jpg');
 print(/a);
 
 Il gio, 2004-02-19 alle 12:20, Dominique ANOKRE ha scritto:
  how to generate a image link with php ?
  
  i use this but it returns errors : 
  
  print(a href=image.htm);
  print(img src=image.jpg);
  print(/a);
  
  Thanks
 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php