print "<" symbol

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • sethupnr
    New Member
    • Sep 2007
    • 26

    print "<" symbol

    how can i priint "<first" in php
  • sethupnr
    New Member
    • Sep 2007
    • 26

    #2
    print &quot;&lt;&quot ; symbol

    How can i print "<first" in php

    Comment

    • hsriat
      Recognized Expert Top Contributor
      • Jan 2008
      • 1653

      #3
      &lt;first

      Try this...

      Comment

      • realin
        Contributor
        • Feb 2007
        • 254

        #4
        Originally posted by sethupnr
        how can i priint "<first" in php
        Here you go..

        [PHP]
        echo "&lt;first" ;
        echo htmlspecialchar s("<first");[/PHP]

        cheers !!

        Comment

        Working...