My probelm is related to Eclipse IDE.
I've installed Eclipse PDT All-in-one edition on my Windows Vista desktop computer.
Every time I save my file it adds last lines of the code that already exists. I can first see the problem when i close the file and reopen it again.
For exammple if i edit the file containing these lines at the bottom:
Code: Select all
<div id="footer"></div>
</body>
</html>
<?php
some_function();
?>
Now when I save file above it results in the following problem:
Code: Select all
<div id="footer"></div>
</body>
</html>
<?php
some_function();
?>
html>
<?php
some_function();
?>
What it does is that Eclipse copies several lines at the bottom of my code and pastes it.
Please help if anyone knows what this trouble depends on. I have googled several hours without result.
Thank you in forward.