Jump to content

[SOLVED] Setting my Programming Editor


Recommended Posts

<?php
$test_post = "No space at top of php post";
?>

I am trying to find out how to set my editor so there is no whitespace at the beginning of my scripts.

If there is no space at the beginning of this script then it is fixed otherwise I will have to work on it.

Why is there a line at the top of my code?

I will try another editor on this code>

Link to comment
https://forums.phpfreaks.com/topic/162093-solved-setting-my-programming-editor/
Share on other sites

Someone suggested once to save as a UTF-16 no BOM. Will this save as with no white space? I am going to try this.

<?php
include("dbin.php");
$table = "home";
$filename = 'log.txt';
mysql_connect($host, $user, $pass);
mysql_select_db($database) or die(mysql_error());
$data = mysql_query("SELECT * FROM $table");
while ($info = mysql_fetch_array($data)){
$log = $info['id'] . " ||| " . $info['ip'] . " ||| " . $info['time'] . " ||| " . $info['browser'] . "\n";
if (is_writable($filename)) {
    if (!$handle = fopen($filename, 'a')) {
         echo "Cannot open file ($filename)";
         exit;
    }
    if (fwrite($handle, $log) === FALSE) {
        echo "Cannot write to file ($filename)";
        exit;
    }
    fclose($handle);
} else {
    echo "The file $filename is not writable";
}
}
    echo "Success, wrote () to file " . $filename;

?>

This is the only way I know that I can test this.

No there is still a blank line at the top of my code. Is this a good way to do this?

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.