Just wondering if anyone can point me to a program that will help me cleanup .php files. I am not sure why, but is seems that through FTP, I have "spaces" in my files. I remember seeing ONE before somewhere, but I cant remember where it was now! Here is an example of what I am referring to as the ugliness....
$title1=stripslashes($title1);
$ext=$PHP_AUTH_USER;
$pass=$PHP_AUTH_PW;
$res=mysql
$d=mysql_fetch_array($res);
$adName=stripslashes($d[title]).stripslashes($d[last]);
$adEmail=stripslashes($d[email]);
I would RATHER it look like this:
$title1=stripslashes($title1);
$ext=$PHP_AUTH_USER;
$pass=$PHP_AUTH_PW;
$res=mysql
$d=mysql_fetch_array($res);
$adName=stripslashes($d[title]).stripslashes($d[last]);
$adEmail=stripslashes($d[email]);
$title1=stripslashes($d[room]);
Any help is appericiated! I would do it by hand, but there are several files and they arent small 😉