How to Transform a String from Multi-Line to Single-Line in PHP? zendnwar August 18, 2014 PHP Basic 1 Comment It is very simple. Just add below code. echo str_replace(array(“\r”,”\n”),””, $str); Related Posts Error Reporting Directives in php.ini zendnwar December 14, 2012 Error Reporting Directives in php.ini To diagnose bugs in your code, you should enable the dire .. Hello world php script. zendnwar July 18, 2012 Just copy the below code and run from your local server. <html> <head> <title> ..