Making "Space" Recognised in Memo Content Boxes, While putting some content when a visitor posts, Can any body help me on this - Other than the HTML Editor Enabled Boxes Roxy
Multiple spaces are combined into one on HTML. So, this html code: Test String Code (markup): Will become: Teste String Code (markup): When displayed. You need to replace "spaces" with the HTML entity " " echo str_replace(' ', ' ', $var); I hope I understood what you asked.