Post a reply

Before posting, please read how to report bug or request support effectively.

Bug reports without an attached log file are usually useless.

Options
Add an Attachment

If you do not want to add an Attachment to your Post, please leave the Fields blank.

(maximum 10 MB; please compress large files; only common media, archive, text and programming file formats are allowed)

Options

Topic review

frank86

PHP Visualization

Good evening

Its it normal that when I want to modify a php that I download from my server and when I opened it with notepad That I see my php all compressed ( all on the same line

This should be the good way of showing it:

<?php include('Connections/settings.php'); ?>
<?php include("includes/sessionInfo.php") ?>
<?php include("includes/sessionInfo.php") ?>
<?php include("includes/sessionInfo.php") ?>
<?php include("includes/sessionInfo.php") ?>
<?php include("includes/langs_stats.php") ?>
<?php
switch ($lang){
case 'en':


But I have it like this :

<?php include('Connections/settings.php'); ?><?php include("includes/sessionInfo.php") ?><?php include("includes/sessionInfo.php") ?><?php include("includes/sessionInfo.php") ?><?php include("includes/sessionInfo.php") ?><?php include("includes/langs_stats.php") ?>

This makes things difficult to read

How to fix this, I'm a noob I know ;)