Zend Studio formats txt-sources after upload.
for Ex:
<?php
echo 'test';
echo 'test';
echo 'test';
?>
after upload this source code looks like:
<?php
echo 'test';
echo 'test';
echo 'test';
?>
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Check the file line delimiter option. In both Zend Studio and Eclipse it should be in Windows->Preferences->General->Workspace
If you use unix-like server you should use:
Adjust the settings based on the server your script will woork and not on the machine you are developing.