CodeIgniter Forums
Less than sign in libraries? - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: Less than sign in libraries? (/showthread.php?tid=45532)



Less than sign in libraries? - El Forum - 09-25-2011

[eluser]moriokasan[/eluser]
Hi all, this drives me nuts so please help me.

I have a simple library in /ci/application/libraries/ where I have a function
Code:
function getString()
{
    return "<p>something</p>";
}
The output of this function is nothing, an empty string.

But if I change the function to remove the 'less than' signs it works:
Code:
function getString()
{
    return "p>something/p>"
}
which returns "p>something/p>" as it should.

Of course this is not exactly my code but you got the idea.

Is there a way to include that "<" sign in the returned string? I tried with &lt; but in the HTML then it is not parsed as an HTML tag...

Thanks !