Ezequiel Sapoznik wrote:
I am having a parse error in the following sentence:

  print "<img src=\"" . $row["foto"] . "" width='104' height='137'\">";

it would help if you posted the actual error message !

but try this ...

print '<img src="' . $row["foto"] . '" width="104" height="137">';

or

print "<img src=\"" . $row["foto"] . "\" width='104' height='137'\">";

--

Sean


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

Reply via email to