Home > other >  Can PHP echo text with same formating as copy pasted?
Can PHP echo text with same formating as copy pasted?

Time:02-10

I want to make program that will echo the same text message as user copy pasted (as code)

example:

echo 'text
         text
            text
         text
      text';
      
      
      OUTPUT: text text text text text
      
      WHAT I WANT: 
      
      text
         text
            text
         text
      text

CodePudding user response:

  •  Tags:  
  • Related