RE: Problems with images..

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



> -----Original Message-----
> From: Anders Norrbring [mailto:lists@xxxxxxxxxxxx]
> Sent: Monday, November 03, 2008 7:44 AM
> To: php-general@xxxxxxxxxxxxx
> Subject:  Problems with images..
> 
> I've been staring myself blind, so now I don't get anywhere, please do
> advice..
> 
> I have a web page printed with PHP, in a table I need to display
images
> that
> are stored in a SQL DB.
> Getting the images into variables isn't an issue at all, but how do I
> output
> it?
> This is what I want to accomplish:
> 
> <tr><td>Current image:</td><td> - THE IMAGE HERE - </td></tr>
> 
> Starting to pull my hair..

<tr><td>Current image:</td><td><img src="<?= $variableName ?>"
/></td></tr>

If you don't have the proper INI setting to allow for the short-hand <?=
?>, you can replace it with:

<?php echo $variableName; ?>

If this made you pull your hair out, then perhaps you should go back and
get a fundamental understanding of HTML and PHP basics before trying to
combine the two. Just sayin'.

HTH,


Todd Boyd
Web Programmer

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



[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux