ironman32 Posted April 1, 2009 Share Posted April 1, 2009 I tried to put a html link within a php function <?php function lfc(){ echo "<a href="www.lfc.tv">LFC</a>"; } echo lfc(); ?> This hasn't worked so I'm wondering if its possible. Any help would be welcomed Quote Link to comment Share on other sites More sharing options...
sKunKbad Posted April 1, 2009 Share Posted April 1, 2009 <?php function lfc(){ return "<a href='www.lfc.tv'>LFC</a>"; } echo lfc(); // I fixed an error, because the double quotes in the HTML either needed to be escaped, or substituted with single quotes. ?> Quote Link to comment Share on other sites More sharing options...
teng84 Posted April 1, 2009 Share Posted April 1, 2009 <?php function lfc(){ return "<a href=\"www.lfc.tv\">LFC</a>"; } echo lfc(); ?> Quote Link to comment Share on other sites More sharing options...
JD* Posted April 1, 2009 Share Posted April 1, 2009 Just to round it out: function lfc() { echo '<a href="http://www.lfc.tv">LFC</a>'; } I like the single quotes because if I have to put something into HTML to check it, I don't have to remove the \" from everything. Quote Link to comment Share on other sites More sharing options...
ironman32 Posted April 2, 2009 Author Share Posted April 2, 2009 I've got it working now. Thanks for the help Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.