Uridium Posted September 5, 2011 Share Posted September 5, 2011 (edited) is anyone who is using Notepad++ having an issue where by you save a file send to FTP and you get a unexpected T_Include one line 1 Then when you paste to normal notepad the whole script is on line one instead of being spaced out ?? example: <?php /*----------------------------------------------------- -- Mono Country v1.0 BETA -- A product of DBS-entertainment -- Copyright held 2005 by Dabomstew -- INDEX.php ------------------------------------------------------- -- Armory Script PLUS v1.0 -- A product of Flash Fire Gaming -- Copyright held 2006 by Cronus -----------------------------------------------------*/ include "globals.php"; if($ir[hospital]>0) die("You are in the hospital for {$ir[hospital]} minutes."); if($ir[jail]>0) die("You are in jail for {$ir[jail]} minutes."); $_GET['ID']= abs((int) $_GET['ID']); $_POST['qty']= abs((int) $_POST['qty']); if(!$_GET['ID'] || !$_POST['qty']) { print "Invalid use of file"; } else if($_POST['qty'] <= 0) { print "You have been added to the delete list for trying to cheat the game."; } else { $q=mysql_query("SELECT * FROM items WHERE itmid={$_GET['ID']}",$c); if(mysql_num_rows($q) == 0) { print "Invalid item ID"; } else { $itemd=mysql_fetch_array($q); if($ir['money'] < $itemd['itmbuyprice']*$_POST['qty']) { print "You don't have enough money to buy this item!"; $h->endpage(); exit; } if($itemd['itmbuyable'] == 0) { print "This item can't be bought!"; $h->endpage(); exit; } $price=($itemd['itmbuyprice']*$_POST['qty']); mysql_query("INSERT INTO inventory VALUES('',{$_GET['ID']},$userid,{$_POST['qty']},0);",$c); mysql_query("UPDATE users SET money=money-$price WHERE userid=$userid",$c); mysql_query("INSERT INTO itembuylogs VALUES ('', $userid, {$_GET['ID']}, $price, {$_POST['qty']}, unix_timestamp(), '{$ir['username']} bought {$_POST['qty']} {$itemd['itmname']}(s) for {$price}')", $c); print "You bought {$_POST['qty']} {$itemd['itmname']}(s) for \$$price"; } } $h->endpage(); ?> Infact that seemed to work fine when posting on here so i'll try do a screen shot Edited September 5, 2011 by illusions Quote Link to comment Share on other sites More sharing options...
Uridium Posted September 5, 2011 Author Share Posted September 5, 2011 example heres an example of how it pasted from notepad++ to normal notepad Quote Link to comment Share on other sites More sharing options...
Uridium Posted September 5, 2011 Author Share Posted September 5, 2011 It only seems to do it when a php file has multiple line spacing ive never had problems with Notepad++ and used it for a long time but the file worked fine before i edited it UNLESS it was sent from the FTP to my comp in that state... so might be a transfer problem.... Quote Link to comment Share on other sites More sharing options...
newttster Posted September 5, 2011 Share Posted September 5, 2011 I have noticed that the only way that I can get any mods from here into Notepad++ (lately) is to first put it into Word as an html file, then copy it from there into Notepad++. For some reason Notepad++ takes the mod and just writes it as one continual line without line breaks. It does not seem to recognize the formatting of the mods anymore. Quote Link to comment Share on other sites More sharing options...
Spudinski Posted September 5, 2011 Share Posted September 5, 2011 It's to do with character encoding, and from what seems like a flaw in the copy-to-clipboard method they use. Notepad is keen on using *nix line endings, and formatting them. I've been using Notepad++ for almost a month now, and my main reason for it is to replace original notepad for compatibility with those "\n" line endings. a_bertrand, being a desktop developer should be able to give a more detailed explanation for this. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.