Jump to content

Html and php for images


valentin

Recommended Posts

I tried to use php with html in order to load an image
[code]<?php
$a="<img src=\"image.jpeg\">";
echo "$a";
?>[/code]

I know that php has its own header for loading an image, but I need a code which uses html. Mine doesn't work, does anyone know if a combination between html and php is possible, in this situation?
Thank you in anticipation!
Link to comment
Share on other sites

the /> is for elements without a closing tag.  it is XHTML format.

as for the actual issue, why are you using quotes at all?  why not just use:

[code]echo $a;[/code]

furthermore, when setting a string that has no variables, you might as well use single quotes to delimit the expression:

[code]$a = '<img src="imagename.jpg" />';[/code]

if this doesn't solve your issue, you're going to need to be more specific with what you're asking.
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.