Wierd character bug in PHP?

Wierd character bug in PHP?

am 08.04.2008 13:22:34 von Michael J Martin

Found an interesting one today. I've been editing some code in the
office and one of my editors, either Coda, SubEthaEdit, Scite or Geany
added an interesting character into my PHP source file.

Initially I thought it was a bug somewhere in my code. But I didn't
know about this hidden character until I viewed it as a phps file.

http://projects.mike-martin.com/fecking_bug.phps
http://projects.mike-martin.com/fecking_bug.php.txt


http://projects.mike-martin.com/fecking_bug.php - error it returns
http://projects.mike-martin.com/fecking_bug.php.gz - in case the txt
file doesn't contain the character.

Can anyone else reproduce it with the links I have just given?

I'm hoping Apache doesn't cause it to go away. Now I've got to go back
into all my code to see if it's crept in. I tried converting /
reinterpreting Line Endings and Encoding types - even to ASCII in Coda
but it still appears!

I know it's probably an encoding issue but surely one like this
shouldn't bring PHP down?

Mike

Re: Wierd character bug in PHP?

am 08.04.2008 15:14:02 von Michael Fesser

..oO(Michael J Martin)

>Found an interesting one today. I've been editing some code in the
>office and one of my editors, either Coda, SubEthaEdit, Scite or Geany
>added an interesting character into my PHP source file.
>
>Initially I thought it was a bug somewhere in my code. But I didn't
>know about this hidden character until I viewed it as a phps file.
>
>http://projects.mike-martin.com/fecking_bug.phps
>http://projects.mike-martin.com/fecking_bug.php.txt
>
>
>http://projects.mike-martin.com/fecking_bug.php - error it returns
>http://projects.mike-martin.com/fecking_bug.php.gz - in case the txt
>file doesn't contain the character.
>
>Can anyone else reproduce it with the links I have just given?

Yes. Question is where does it come from?

>I'm hoping Apache doesn't cause it to go away. Now I've got to go back
>into all my code to see if it's crept in. I tried converting /
>reinterpreting Line Endings and Encoding types - even to ASCII in Coda
>but it still appears!
>
>I know it's probably an encoding issue but surely one like this
>shouldn't bring PHP down?

The byte in question is 0x7F, which is the "DEL" control char:

http://www.fileformat.info/info/unicode/char/007f/index.htm

Obviously it shouldn't be there at all.

Micha

Re: Wierd character bug in PHP?

am 08.04.2008 15:14:02 von Michael Fesser

..oO(Michael J Martin)

>Found an interesting one today. I've been editing some code in the
>office and one of my editors, either Coda, SubEthaEdit, Scite or Geany
>added an interesting character into my PHP source file.
>
>Initially I thought it was a bug somewhere in my code. But I didn't
>know about this hidden character until I viewed it as a phps file.
>
>http://projects.mike-martin.com/fecking_bug.phps
>http://projects.mike-martin.com/fecking_bug.php.txt
>
>
>http://projects.mike-martin.com/fecking_bug.php - error it returns
>http://projects.mike-martin.com/fecking_bug.php.gz - in case the txt
>file doesn't contain the character.
>
>Can anyone else reproduce it with the links I have just given?

Yes. Question is where does it come from?

>I'm hoping Apache doesn't cause it to go away. Now I've got to go back
>into all my code to see if it's crept in. I tried converting /
>reinterpreting Line Endings and Encoding types - even to ASCII in Coda
>but it still appears!
>
>I know it's probably an encoding issue but surely one like this
>shouldn't bring PHP down?

The byte in question is 0x7F, which is the "DEL" control char:

http://www.fileformat.info/info/unicode/char/007f/index.htm

Obviously it shouldn't be there at all.

Micha

Re: Wierd character bug in PHP?

am 08.04.2008 18:48:26 von Jerry Stuckle

Michael J Martin wrote:
> Found an interesting one today. I've been editing some code in the
> office and one of my editors, either Coda, SubEthaEdit, Scite or Geany
> added an interesting character into my PHP source file.
>
> Initially I thought it was a bug somewhere in my code. But I didn't
> know about this hidden character until I viewed it as a phps file.
>
> http://projects.mike-martin.com/fecking_bug.phps
> http://projects.mike-martin.com/fecking_bug.php.txt
>
>
> http://projects.mike-martin.com/fecking_bug.php - error it returns
> http://projects.mike-martin.com/fecking_bug.php.gz - in case the txt
> file doesn't contain the character.
>
> Can anyone else reproduce it with the links I have just given?
>
> I'm hoping Apache doesn't cause it to go away. Now I've got to go back
> into all my code to see if it's crept in. I tried converting /
> reinterpreting Line Endings and Encoding types - even to ASCII in Coda
> but it still appears!
>
> I know it's probably an encoding issue but surely one like this
> shouldn't bring PHP down?
>
> Mike
>

Mike,

It is in your .gz file - on a line by itself between the $qsql= and the
echo statements.

Maybe try a different editor. It showed up perfectly in TextPad.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================

Re: Wierd character bug in PHP?

am 08.04.2008 18:48:26 von Jerry Stuckle

Michael J Martin wrote:
> Found an interesting one today. I've been editing some code in the
> office and one of my editors, either Coda, SubEthaEdit, Scite or Geany
> added an interesting character into my PHP source file.
>
> Initially I thought it was a bug somewhere in my code. But I didn't
> know about this hidden character until I viewed it as a phps file.
>
> http://projects.mike-martin.com/fecking_bug.phps
> http://projects.mike-martin.com/fecking_bug.php.txt
>
>
> http://projects.mike-martin.com/fecking_bug.php - error it returns
> http://projects.mike-martin.com/fecking_bug.php.gz - in case the txt
> file doesn't contain the character.
>
> Can anyone else reproduce it with the links I have just given?
>
> I'm hoping Apache doesn't cause it to go away. Now I've got to go back
> into all my code to see if it's crept in. I tried converting /
> reinterpreting Line Endings and Encoding types - even to ASCII in Coda
> but it still appears!
>
> I know it's probably an encoding issue but surely one like this
> shouldn't bring PHP down?
>
> Mike
>

Mike,

It is in your .gz file - on a line by itself between the $qsql= and the
echo statements.

Maybe try a different editor. It showed up perfectly in TextPad.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================

Re: Wierd character bug in PHP?

am 09.04.2008 10:24:21 von Erwin Moller

Jerry Stuckle schreef:
> Michael J Martin wrote:
>> Found an interesting one today. I've been editing some code in the
>> office and one of my editors, either Coda, SubEthaEdit, Scite or Geany
>> added an interesting character into my PHP source file.
>>
>> Initially I thought it was a bug somewhere in my code. But I didn't
>> know about this hidden character until I viewed it as a phps file.
>>
>> http://projects.mike-martin.com/fecking_bug.phps
>> http://projects.mike-martin.com/fecking_bug.php.txt
>>
>>
>> http://projects.mike-martin.com/fecking_bug.php - error it returns
>> http://projects.mike-martin.com/fecking_bug.php.gz - in case the txt
>> file doesn't contain the character.
>>
>> Can anyone else reproduce it with the links I have just given?
>>
>> I'm hoping Apache doesn't cause it to go away. Now I've got to go back
>> into all my code to see if it's crept in. I tried converting /
>> reinterpreting Line Endings and Encoding types - even to ASCII in Coda
>> but it still appears!
>>
>> I know it's probably an encoding issue but surely one like this
>> shouldn't bring PHP down?
>>
>> Mike
>>
>
> Mike,
>
> It is in your .gz file - on a line by itself between the $qsql= and the
> echo statements.
>
> Maybe try a different editor. It showed up perfectly in TextPad.
>

TextPad Jerry?
Great! My old favorite editor. :-)
I thought I was the last man on Earth using it. ;-)

Regards,
Erwin Moller

Re: Wierd character bug in PHP?

am 09.04.2008 10:24:21 von Erwin Moller

Jerry Stuckle schreef:
> Michael J Martin wrote:
>> Found an interesting one today. I've been editing some code in the
>> office and one of my editors, either Coda, SubEthaEdit, Scite or Geany
>> added an interesting character into my PHP source file.
>>
>> Initially I thought it was a bug somewhere in my code. But I didn't
>> know about this hidden character until I viewed it as a phps file.
>>
>> http://projects.mike-martin.com/fecking_bug.phps
>> http://projects.mike-martin.com/fecking_bug.php.txt
>>
>>
>> http://projects.mike-martin.com/fecking_bug.php - error it returns
>> http://projects.mike-martin.com/fecking_bug.php.gz - in case the txt
>> file doesn't contain the character.
>>
>> Can anyone else reproduce it with the links I have just given?
>>
>> I'm hoping Apache doesn't cause it to go away. Now I've got to go back
>> into all my code to see if it's crept in. I tried converting /
>> reinterpreting Line Endings and Encoding types - even to ASCII in Coda
>> but it still appears!
>>
>> I know it's probably an encoding issue but surely one like this
>> shouldn't bring PHP down?
>>
>> Mike
>>
>
> Mike,
>
> It is in your .gz file - on a line by itself between the $qsql= and the
> echo statements.
>
> Maybe try a different editor. It showed up perfectly in TextPad.
>

TextPad Jerry?
Great! My old favorite editor. :-)
I thought I was the last man on Earth using it. ;-)

Regards,
Erwin Moller

Re: Wierd character bug in PHP?

am 09.04.2008 12:18:21 von Michael J Martin

On Apr 8, 2:14 pm, Michael Fesser wrote:

> The byte in question is 0x7F, which is the "DEL" control char:
>
> http://www.fileformat.info/info/unicode/char/007f/index.htm
>
> Obviously it shouldn't be there at all.
>
> Micha

Interesting, I'll keep an eye on that. Maybe if I can reproduce it
again whilst editing I'll send it to the Coda dev team. - I think it
was Coda that was the culprit.

So the question becomes subjective:
FR: Shouldn't the PHP interpreter ignore 0x07F when interpreting?

Re: Wierd character bug in PHP?

am 09.04.2008 12:18:21 von Michael J Martin

On Apr 8, 2:14 pm, Michael Fesser wrote:

> The byte in question is 0x7F, which is the "DEL" control char:
>
> http://www.fileformat.info/info/unicode/char/007f/index.htm
>
> Obviously it shouldn't be there at all.
>
> Micha

Interesting, I'll keep an eye on that. Maybe if I can reproduce it
again whilst editing I'll send it to the Coda dev team. - I think it
was Coda that was the culprit.

So the question becomes subjective:
FR: Shouldn't the PHP interpreter ignore 0x07F when interpreting?

Re: Wierd character bug in PHP?

am 09.04.2008 12:23:14 von Jerry Stuckle

Erwin Moller wrote:
> Jerry Stuckle schreef:
>> Michael J Martin wrote:
>>> Found an interesting one today. I've been editing some code in the
>>> office and one of my editors, either Coda, SubEthaEdit, Scite or Geany
>>> added an interesting character into my PHP source file.
>>>
>>> Initially I thought it was a bug somewhere in my code. But I didn't
>>> know about this hidden character until I viewed it as a phps file.
>>>
>>> http://projects.mike-martin.com/fecking_bug.phps
>>> http://projects.mike-martin.com/fecking_bug.php.txt
>>>
>>>
>>> http://projects.mike-martin.com/fecking_bug.php - error it returns
>>> http://projects.mike-martin.com/fecking_bug.php.gz - in case the txt
>>> file doesn't contain the character.
>>>
>>> Can anyone else reproduce it with the links I have just given?
>>>
>>> I'm hoping Apache doesn't cause it to go away. Now I've got to go back
>>> into all my code to see if it's crept in. I tried converting /
>>> reinterpreting Line Endings and Encoding types - even to ASCII in Coda
>>> but it still appears!
>>>
>>> I know it's probably an encoding issue but surely one like this
>>> shouldn't bring PHP down?
>>>
>>> Mike
>>>
>>
>> Mike,
>>
>> It is in your .gz file - on a line by itself between the $qsql= and
>> the echo statements.
>>
>> Maybe try a different editor. It showed up perfectly in TextPad.
>>
>
> TextPad Jerry?
> Great! My old favorite editor. :-)
> I thought I was the last man on Earth using it. ;-)
>
> Regards,
> Erwin Moller
>

Naw, Erwin, it's one of the editors I use, mainly for quick and dirty
stuff. I prefer Crimson for programming (actually Eclipse is better but
a bit buggy). But sometimes, like this, the simpler the better :-)

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================

Re: Wierd character bug in PHP?

am 09.04.2008 12:23:14 von Jerry Stuckle

Erwin Moller wrote:
> Jerry Stuckle schreef:
>> Michael J Martin wrote:
>>> Found an interesting one today. I've been editing some code in the
>>> office and one of my editors, either Coda, SubEthaEdit, Scite or Geany
>>> added an interesting character into my PHP source file.
>>>
>>> Initially I thought it was a bug somewhere in my code. But I didn't
>>> know about this hidden character until I viewed it as a phps file.
>>>
>>> http://projects.mike-martin.com/fecking_bug.phps
>>> http://projects.mike-martin.com/fecking_bug.php.txt
>>>
>>>
>>> http://projects.mike-martin.com/fecking_bug.php - error it returns
>>> http://projects.mike-martin.com/fecking_bug.php.gz - in case the txt
>>> file doesn't contain the character.
>>>
>>> Can anyone else reproduce it with the links I have just given?
>>>
>>> I'm hoping Apache doesn't cause it to go away. Now I've got to go back
>>> into all my code to see if it's crept in. I tried converting /
>>> reinterpreting Line Endings and Encoding types - even to ASCII in Coda
>>> but it still appears!
>>>
>>> I know it's probably an encoding issue but surely one like this
>>> shouldn't bring PHP down?
>>>
>>> Mike
>>>
>>
>> Mike,
>>
>> It is in your .gz file - on a line by itself between the $qsql= and
>> the echo statements.
>>
>> Maybe try a different editor. It showed up perfectly in TextPad.
>>
>
> TextPad Jerry?
> Great! My old favorite editor. :-)
> I thought I was the last man on Earth using it. ;-)
>
> Regards,
> Erwin Moller
>

Naw, Erwin, it's one of the editors I use, mainly for quick and dirty
stuff. I prefer Crimson for programming (actually Eclipse is better but
a bit buggy). But sometimes, like this, the simpler the better :-)

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================

Re: Wierd character bug in PHP?

am 09.04.2008 12:24:41 von Jerry Stuckle

Michael J Martin wrote:
> On Apr 8, 2:14 pm, Michael Fesser wrote:
>
>> The byte in question is 0x7F, which is the "DEL" control char:
>>
>> http://www.fileformat.info/info/unicode/char/007f/index.htm
>>
>> Obviously it shouldn't be there at all.
>>
>> Micha
>
> Interesting, I'll keep an eye on that. Maybe if I can reproduce it
> again whilst editing I'll send it to the Coda dev team. - I think it
> was Coda that was the culprit.
>
> So the question becomes subjective:
> FR: Shouldn't the PHP interpreter ignore 0x07F when interpreting?
>

No, PHP doesn't ignore any character - just like every other language,
every character counts. As it should be.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================

Re: Wierd character bug in PHP?

am 09.04.2008 12:24:41 von Jerry Stuckle

Michael J Martin wrote:
> On Apr 8, 2:14 pm, Michael Fesser wrote:
>
>> The byte in question is 0x7F, which is the "DEL" control char:
>>
>> http://www.fileformat.info/info/unicode/char/007f/index.htm
>>
>> Obviously it shouldn't be there at all.
>>
>> Micha
>
> Interesting, I'll keep an eye on that. Maybe if I can reproduce it
> again whilst editing I'll send it to the Coda dev team. - I think it
> was Coda that was the culprit.
>
> So the question becomes subjective:
> FR: Shouldn't the PHP interpreter ignore 0x07F when interpreting?
>

No, PHP doesn't ignore any character - just like every other language,
every character counts. As it should be.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================

Re: Wierd character bug in PHP?

am 10.04.2008 10:09:55 von Erwin Moller

Jerry Stuckle schreef:
> Erwin Moller wrote:



>> TextPad Jerry?
>> Great! My old favorite editor. :-)
>> I thought I was the last man on Earth using it. ;-)
>>
>> Regards,
>> Erwin Moller
>>
>
> Naw, Erwin, it's one of the editors I use, mainly for quick and dirty
> stuff. I prefer Crimson for programming (actually Eclipse is better but
> a bit buggy). But sometimes, like this, the simpler the better :-)

Hi Jerry,

TextPad is a great program, but I don't use it either for PHP
programming. I prefer Zend Studio (5.5) at the moment, but am
considering their Eclipse port.

I feel a bit had by Zend. When I bought Zend Studio, they promised me a
lifetime of free upgrades, only to start their new line in Eclipse right
away, for which I have to pay of course.
Bad Zend, seems they are in it for the money. ;-)

Regards,
Erwin

Re: Wierd character bug in PHP?

am 10.04.2008 10:09:55 von Erwin Moller

Jerry Stuckle schreef:
> Erwin Moller wrote:



>> TextPad Jerry?
>> Great! My old favorite editor. :-)
>> I thought I was the last man on Earth using it. ;-)
>>
>> Regards,
>> Erwin Moller
>>
>
> Naw, Erwin, it's one of the editors I use, mainly for quick and dirty
> stuff. I prefer Crimson for programming (actually Eclipse is better but
> a bit buggy). But sometimes, like this, the simpler the better :-)

Hi Jerry,

TextPad is a great program, but I don't use it either for PHP
programming. I prefer Zend Studio (5.5) at the moment, but am
considering their Eclipse port.

I feel a bit had by Zend. When I bought Zend Studio, they promised me a
lifetime of free upgrades, only to start their new line in Eclipse right
away, for which I have to pay of course.
Bad Zend, seems they are in it for the money. ;-)

Regards,
Erwin

Re: Wierd character bug in PHP?

am 10.04.2008 12:30:58 von Jerry Stuckle

Erwin Moller wrote:
> Jerry Stuckle schreef:
>> Erwin Moller wrote:
>
>
>
>>> TextPad Jerry?
>>> Great! My old favorite editor. :-)
>>> I thought I was the last man on Earth using it. ;-)
>>>
>>> Regards,
>>> Erwin Moller
>>>
>>
>> Naw, Erwin, it's one of the editors I use, mainly for quick and dirty
>> stuff. I prefer Crimson for programming (actually Eclipse is better
>> but a bit buggy). But sometimes, like this, the simpler the better :-)
>
> Hi Jerry,
>
> TextPad is a great program, but I don't use it either for PHP
> programming. I prefer Zend Studio (5.5) at the moment, but am
> considering their Eclipse port.
>
> I feel a bit had by Zend. When I bought Zend Studio, they promised me a
> lifetime of free upgrades, only to start their new line in Eclipse right
> away, for which I have to pay of course.
> Bad Zend, seems they are in it for the money. ;-)
>
> Regards,
> Erwin
>

Yea, I almost bought Zend studio. Glad I didn't, now.

Of course, they said "lifetime updates" - but they didn't say WHOSE
lifetime... :-)


--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================

Re: Wierd character bug in PHP?

am 10.04.2008 12:30:58 von Jerry Stuckle

Erwin Moller wrote:
> Jerry Stuckle schreef:
>> Erwin Moller wrote:
>
>
>
>>> TextPad Jerry?
>>> Great! My old favorite editor. :-)
>>> I thought I was the last man on Earth using it. ;-)
>>>
>>> Regards,
>>> Erwin Moller
>>>
>>
>> Naw, Erwin, it's one of the editors I use, mainly for quick and dirty
>> stuff. I prefer Crimson for programming (actually Eclipse is better
>> but a bit buggy). But sometimes, like this, the simpler the better :-)
>
> Hi Jerry,
>
> TextPad is a great program, but I don't use it either for PHP
> programming. I prefer Zend Studio (5.5) at the moment, but am
> considering their Eclipse port.
>
> I feel a bit had by Zend. When I bought Zend Studio, they promised me a
> lifetime of free upgrades, only to start their new line in Eclipse right
> away, for which I have to pay of course.
> Bad Zend, seems they are in it for the money. ;-)
>
> Regards,
> Erwin
>

Yea, I almost bought Zend studio. Glad I didn't, now.

Of course, they said "lifetime updates" - but they didn't say WHOSE
lifetime... :-)


--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================

Re: Wierd character bug in PHP?

am 10.04.2008 14:51:31 von piotr

>> TextPad is a great program, but I don't use it either for PHP
>> programming. I prefer Zend Studio (5.5) at the moment, but am
>> considering their Eclipse port.
>>
>> I feel a bit had by Zend. When I bought Zend Studio, they promised me
>> a lifetime of free upgrades, only to start their new line in Eclipse
>> right away, for which I have to pay of course.
>> Bad Zend, seems they are in it for the money. ;-)
>>
>> Regards,
>> Erwin
>>
>
> Yea, I almost bought Zend studio. Glad I didn't, now.
>
> Of course, they said "lifetime updates" - but they didn't say WHOSE
> lifetime... :-)
>
>

There will be Netbeans powered PHP first alpha released in about one month.

best regards
Piotr N

Re: Wierd character bug in PHP?

am 10.04.2008 14:51:31 von piotr

>> TextPad is a great program, but I don't use it either for PHP
>> programming. I prefer Zend Studio (5.5) at the moment, but am
>> considering their Eclipse port.
>>
>> I feel a bit had by Zend. When I bought Zend Studio, they promised me
>> a lifetime of free upgrades, only to start their new line in Eclipse
>> right away, for which I have to pay of course.
>> Bad Zend, seems they are in it for the money. ;-)
>>
>> Regards,
>> Erwin
>>
>
> Yea, I almost bought Zend studio. Glad I didn't, now.
>
> Of course, they said "lifetime updates" - but they didn't say WHOSE
> lifetime... :-)
>
>

There will be Netbeans powered PHP first alpha released in about one month.

best regards
Piotr N

Re: Wierd character bug in PHP?

am 10.04.2008 14:54:14 von piotr

Piotr wrote:
>>> TextPad is a great program, but I don't use it either for PHP
>>> programming. I prefer Zend Studio (5.5) at the moment, but am
>>> considering their Eclipse port.
>>>
>>> I feel a bit had by Zend. When I bought Zend Studio, they promised me
>>> a lifetime of free upgrades, only to start their new line in Eclipse
>>> right away, for which I have to pay of course.
>>> Bad Zend, seems they are in it for the money. ;-)
>>>
>>> Regards,
>>> Erwin
>>>
>> Yea, I almost bought Zend studio. Glad I didn't, now.
>>
>> Of course, they said "lifetime updates" - but they didn't say WHOSE
>> lifetime... :-)
>>
>>
>
> There will be Netbeans powered PHP first alpha released in about one month.
>
> best regards
> Piotr N
ofc, I ment PHP IDE

Re: Wierd character bug in PHP?

am 10.04.2008 14:54:14 von piotr

Piotr wrote:
>>> TextPad is a great program, but I don't use it either for PHP
>>> programming. I prefer Zend Studio (5.5) at the moment, but am
>>> considering their Eclipse port.
>>>
>>> I feel a bit had by Zend. When I bought Zend Studio, they promised me
>>> a lifetime of free upgrades, only to start their new line in Eclipse
>>> right away, for which I have to pay of course.
>>> Bad Zend, seems they are in it for the money. ;-)
>>>
>>> Regards,
>>> Erwin
>>>
>> Yea, I almost bought Zend studio. Glad I didn't, now.
>>
>> Of course, they said "lifetime updates" - but they didn't say WHOSE
>> lifetime... :-)
>>
>>
>
> There will be Netbeans powered PHP first alpha released in about one month.
>
> best regards
> Piotr N
ofc, I ment PHP IDE

Re: Wierd character bug in PHP?

am 10.04.2008 16:26:17 von Erwin Moller

Piotr schreef:
> Piotr wrote:
>>>> TextPad is a great program, but I don't use it either for PHP
>>>> programming. I prefer Zend Studio (5.5) at the moment, but am
>>>> considering their Eclipse port.
>>>>
>>>> I feel a bit had by Zend. When I bought Zend Studio, they promised me
>>>> a lifetime of free upgrades, only to start their new line in Eclipse
>>>> right away, for which I have to pay of course.
>>>> Bad Zend, seems they are in it for the money. ;-)
>>>>
>>>> Regards,
>>>> Erwin
>>>>
>>> Yea, I almost bought Zend studio. Glad I didn't, now.
>>>
>>> Of course, they said "lifetime updates" - but they didn't say WHOSE
>>> lifetime... :-)
>>>
>>>
>> There will be Netbeans powered PHP first alpha released in about one month.
>>
>> best regards
>> Piotr N
> ofc, I ment PHP IDE

Netbeans goes PHP?
Wow!

I liked Netbeans a lot more than Eclipse for my Java Projects.
Not to mention Eclipse was horribly slow on my old development machine.

Personally, I thought of Eclipse as overly complex compared to Netbeans,
but that could very well be just me.

I'll keep an eye on it. :-)

Thanks for the news.

Regards,
Erwin Moller

Re: Wierd character bug in PHP?

am 10.04.2008 16:26:17 von Erwin Moller

Piotr schreef:
> Piotr wrote:
>>>> TextPad is a great program, but I don't use it either for PHP
>>>> programming. I prefer Zend Studio (5.5) at the moment, but am
>>>> considering their Eclipse port.
>>>>
>>>> I feel a bit had by Zend. When I bought Zend Studio, they promised me
>>>> a lifetime of free upgrades, only to start their new line in Eclipse
>>>> right away, for which I have to pay of course.
>>>> Bad Zend, seems they are in it for the money. ;-)
>>>>
>>>> Regards,
>>>> Erwin
>>>>
>>> Yea, I almost bought Zend studio. Glad I didn't, now.
>>>
>>> Of course, they said "lifetime updates" - but they didn't say WHOSE
>>> lifetime... :-)
>>>
>>>
>> There will be Netbeans powered PHP first alpha released in about one month.
>>
>> best regards
>> Piotr N
> ofc, I ment PHP IDE

Netbeans goes PHP?
Wow!

I liked Netbeans a lot more than Eclipse for my Java Projects.
Not to mention Eclipse was horribly slow on my old development machine.

Personally, I thought of Eclipse as overly complex compared to Netbeans,
but that could very well be just me.

I'll keep an eye on it. :-)

Thanks for the news.

Regards,
Erwin Moller

Re: Wierd character bug in PHP?

am 10.04.2008 23:14:26 von Jerry Stuckle

Piotr wrote:
>>> TextPad is a great program, but I don't use it either for PHP
>>> programming. I prefer Zend Studio (5.5) at the moment, but am
>>> considering their Eclipse port.
>>>
>>> I feel a bit had by Zend. When I bought Zend Studio, they promised me
>>> a lifetime of free upgrades, only to start their new line in Eclipse
>>> right away, for which I have to pay of course.
>>> Bad Zend, seems they are in it for the money. ;-)
>>>
>>> Regards,
>>> Erwin
>>>
>> Yea, I almost bought Zend studio. Glad I didn't, now.
>>
>> Of course, they said "lifetime updates" - but they didn't say WHOSE
>> lifetime... :-)
>>
>>
>
> There will be Netbeans powered PHP first alpha released in about one month.
>
> best regards
> Piotr N
>

Hmmm, now that would be good! Netbeans is really good for Java.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================

Re: Wierd character bug in PHP?

am 10.04.2008 23:14:26 von Jerry Stuckle

Piotr wrote:
>>> TextPad is a great program, but I don't use it either for PHP
>>> programming. I prefer Zend Studio (5.5) at the moment, but am
>>> considering their Eclipse port.
>>>
>>> I feel a bit had by Zend. When I bought Zend Studio, they promised me
>>> a lifetime of free upgrades, only to start their new line in Eclipse
>>> right away, for which I have to pay of course.
>>> Bad Zend, seems they are in it for the money. ;-)
>>>
>>> Regards,
>>> Erwin
>>>
>> Yea, I almost bought Zend studio. Glad I didn't, now.
>>
>> Of course, they said "lifetime updates" - but they didn't say WHOSE
>> lifetime... :-)
>>
>>
>
> There will be Netbeans powered PHP first alpha released in about one month.
>
> best regards
> Piotr N
>

Hmmm, now that would be good! Netbeans is really good for Java.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================

Re: Wierd character bug in PHP?

am 10.04.2008 23:57:08 von piotr

Jerry Stuckle wrote:
>
> Hmmm, now that would be good! Netbeans is really good for Java.
>
Well.. in fact one of it's dev team members asked the question about
"what are our expectations from 'best' PHP IDE" few days ago on polish
PHP group.
I have some experience with Eclipse and Zend Studio, so shared my view
from that perspective, but if you have some more info, i guess it
wouldn't be bad to mail the guy with suggestions.

He posted as tomslot(at)gmail.com,
web: http://wiki.netbeans.org/PHP

best regards
Piotr N

Re: Wierd character bug in PHP?

am 11.04.2008 00:19:04 von Jerry Stuckle

Piotr wrote:
> Jerry Stuckle wrote:
>> Hmmm, now that would be good! Netbeans is really good for Java.
>>
> Well.. in fact one of it's dev team members asked the question about
> "what are our expectations from 'best' PHP IDE" few days ago on polish
> PHP group.
> I have some experience with Eclipse and Zend Studio, so shared my view
> from that perspective, but if you have some more info, i guess it
> wouldn't be bad to mail the guy with suggestions.
>
> He posted as tomslot(at)gmail.com,
> web: http://wiki.netbeans.org/PHP
>
> best regards
> Piotr N
>

Not knowing what they're planning, it's hard to make suggestions. But
if they do the same things that NetBeans is doing currently in Java, it
should be great.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================

Re: Wierd character bug in PHP?

am 11.04.2008 09:09:57 von piotr

Jerry Stuckle wrote:
>
> Not knowing what they're planning, it's hard to make suggestions. But
> if they do the same things that NetBeans is doing currently in Java, it
> should be great.
>
I guess one of the point of him asking, was that we dont know what they
are planing :) They don't want to know what we expect, but rather what
we would like to have.

Anyways, it's all in the wiki.

best regards
Piotr N

Re: Wierd character bug in PHP?

am 11.04.2008 14:48:15 von Jerry Stuckle

Piotr wrote:
> Jerry Stuckle wrote:
>> Not knowing what they're planning, it's hard to make suggestions. But
>> if they do the same things that NetBeans is doing currently in Java, it
>> should be great.
>>
> I guess one of the point of him asking, was that we dont know what they
> are planing :) They don't want to know what we expect, but rather what
> we would like to have.
>
> Anyways, it's all in the wiki.
>
> best regards
> Piotr N
>

As I said - if they're going to do for PHP what NetBeans does for Java,
I'd be happy.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================

Re: Wierd character bug in PHP?

am 14.04.2008 00:02:06 von Sir Robin

On Thu, 10 Apr 2008 14:51:31 +0200, Piotr wrote:

>> Yea, I almost bought Zend studio. Glad I didn't, now.
>>
>> Of course, they said "lifetime updates" - but they didn't say WHOSE
>> lifetime... :-)
>>
>>
>
>There will be Netbeans powered PHP first alpha released in about one month.

Hmm, I use Netbeans for Java but I really don't feel like using any
development IDE's with most languages (including PHP) and have grown very fond
of emacs :) Might be interesting to check that one out just to feed my
curiosity though :)

Heh, actually JBuilder and Netbeans are only dev IDE's I have used after I
switched from Borland Turbo Pascal & C/C++ to DJGPP C/C++ compiler (back in
DOS days) - since that I have used simple editors for quick hacks and emacs
for most other things...

--
***/--- Sir Robin (aka Jani Saksa) Bi-Sex and proud of it! ---\***
**/ email: robsku@fiveam.NO-SPAM.org, <*> Reg. Linux user #290577 \**
*| Me, Drugs, DooM, Photos, Writings... http://soul.fiveam.org/robsku |*
**\--- GSM/SMS: +358 44 927 3992 ---/**
"Kun nuorille opetetaan, että kannabis on yhtä vaarallista kuin heroiini,
niin tokihan he oppivat, että heroiini on yhtä vaaratonta kuin kannabis."

Re: Wierd character bug in PHP?

am 14.04.2008 00:02:06 von Sir Robin

On Thu, 10 Apr 2008 14:51:31 +0200, Piotr wrote:

>> Yea, I almost bought Zend studio. Glad I didn't, now.
>>
>> Of course, they said "lifetime updates" - but they didn't say WHOSE
>> lifetime... :-)
>>
>>
>
>There will be Netbeans powered PHP first alpha released in about one month.

Hmm, I use Netbeans for Java but I really don't feel like using any
development IDE's with most languages (including PHP) and have grown very fond
of emacs :) Might be interesting to check that one out just to feed my
curiosity though :)

Heh, actually JBuilder and Netbeans are only dev IDE's I have used after I
switched from Borland Turbo Pascal & C/C++ to DJGPP C/C++ compiler (back in
DOS days) - since that I have used simple editors for quick hacks and emacs
for most other things...

--
***/--- Sir Robin (aka Jani Saksa) Bi-Sex and proud of it! ---\***
**/ email: robsku@fiveam.NO-SPAM.org, <*> Reg. Linux user #290577 \**
*| Me, Drugs, DooM, Photos, Writings... http://soul.fiveam.org/robsku |*
**\--- GSM/SMS: +358 44 927 3992 ---/**
"Kun nuorille opetetaan, että kannabis on yhtä vaarallista kuin heroiini,
niin tokihan he oppivat, että heroiini on yhtä vaaratonta kuin kannabis."