Hi all,
I use WAMP server 2, php 5.2.8
This code
[code=php]
echo "1";
include(mnmincl ude.'html1.php' );
echo "2";
[/code]
prints out "1\r\n2" even though there are only functions in html1.php file but no echo statement.
When run on a linux server, there are no extra "\r\n". I assume this is wamp/apache behavior and not php behavior. How do people who develop on WAMP and deploy on Linux deal with these types of string issues?
Thanks,
Jack
I use WAMP server 2, php 5.2.8
This code
[code=php]
echo "1";
include(mnmincl ude.'html1.php' );
echo "2";
[/code]
prints out "1\r\n2" even though there are only functions in html1.php file but no echo statement.
When run on a linux server, there are no extra "\r\n". I assume this is wamp/apache behavior and not php behavior. How do people who develop on WAMP and deploy on Linux deal with these types of string issues?
Thanks,
Jack
Comment