Welcome Guest, Not a member yet? Register   Sign In
Less than sign in libraries?
#1

[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 !




Theme © iAndrew 2016 - Forum software by © MyBB