Jump to content
MakeWebGames

Notepad++ issue


Uridium

Recommended Posts

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 by illusions
Link to comment
Share on other sites

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....

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...