Jump to content

Source Code Displayed In Plain Text


izzy

Recommended Posts

Hi,

I'm trying to display a bit of HTML code on my page so my users can copy this to their websites if they want to.
It is supposed to be a direct link to their own userpage on my site.

This is what i want to display on my page. In plain text

<a href="http://www.mypage.com/index.php?id=<?php echo"$id";?>"<img src="http://www.mypage.com/bnt-logo.png"</a>

Every way i've tried it just keeps recognising parts as HTML or PHP.

Can someone tell me how to fix this problem?
Link to comment
https://forums.phpfreaks.com/topic/13191-source-code-displayed-in-plain-text/
Share on other sites

Use htmlentities, function ie:
[code]$str = '<a href="http://www.mypage.com/index.php?id=<?php echo"$id";?>"<img src="http://www.mypage.com/bnt-logo.png"></a>';

echo htmlentities($str);[/code]

Also how is <?php echo"$id";?> going to work? How is the $id variable going to be set on the other persons site they post it on?
[!--quoteo(post=389195:date=Jun 29 2006, 12:45 PM:name=wildteen88)--][div class=\'quotetop\']QUOTE(wildteen88 @ Jun 29 2006, 12:45 PM) [snapback]389195[/snapback][/div][div class=\'quotemain\'][!--quotec--]

Also how is <?php echo"$id";?> going to work? How is the $id variable going to be set on the other persons site they post it on?
[/quote]

Sorry... that part is actually not supposed to be in plain text, that is supposed to echo/display the user id in question.

Could you please help me with that too?
OMGOSH!

U GUYS HAV TO DO EVRYTHING THE HARDWAY DONT U!

lol, all u gota do
is insert this code into ur script.....

[code]echo('&lt;a href=&quot;http://www.mypage.com/index.php?id=' . $id . '&quot;&lt;img src=&quot;http://www.mypage.com/bnt-logo.png&quot;&lt;/a&gt;');[/code]


[b]how i did this ?[/b]

put wat u want to b display in the "design" part of a blank dreamweaver doc, and then check what the code for it is!

easy!

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.