- martin
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.
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 ;)
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 ;)