FUDforum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » Imported messages » comp.lang.php » FF26 crashes with simple code!
Show: Today's Messages :: Polls :: Message Navigator
Switch to threaded view of this topic Create a new topic Submit Reply
FF26 crashes with simple code! [message #184360] Sun, 29 December 2013 00:33 Go to next message
Mr Oldies is currently offline  Mr Oldies
Messages: 241
Registered: October 2013
Karma: 0
Senior Member
<?php
$year=1960;
$artnum=1;
while ($five[$artnum][2]=$year)
{
echo $year."...";
echo $five[$artnum][0]."</br>"; $artnum++;}
?>

It works fine without echo $year.
Once that's added, FF@^ crashes.
Why do the expert coders at mozilla always fix what ain't broke?
BTW, IE and Opera show the code with no problems.
Re: FF26 crashes with simple code! [message #184361 is a reply to message #184360] Sun, 29 December 2013 01:29 Go to previous messageGo to next message
Evan Platt is currently offline  Evan Platt
Messages: 124
Registered: November 2010
Karma: 0
Senior Member
On Sat, 28 Dec 2013 19:33:30 -0500, richard <noreply(at)example(dot)com>
wrote:

> <?php
> $year=1960;
> $artnum=1;
> while ($five[$artnum][2]=$year)
> {
> echo $year."...";
> echo $five[$artnum][0]."</br>"; $artnum++;}
> ?>
>
> It works fine without echo $year.
> Once that's added, FF@^ crashes.
> Why do the expert coders at mozilla always fix what ain't broke?
> BTW, IE and Opera show the code with no problems.

*sigh*

bullis, maybe you should take up something less complex. Like maybe
coloring books?

PHP clearly isn't for you.
--
To reply via e-mail, remove The Obvious and .invalid from my e-mail address.
Re: FF26 crashes with simple code! [message #184362 is a reply to message #184360] Sun, 29 December 2013 01:38 Go to previous messageGo to next message
Doug Miller is currently offline  Doug Miller
Messages: 171
Registered: August 2011
Karma: 0
Senior Member
richard <noreply(at)example(dot)com> wrote in news:9rjd58qt2a19$.wb3gkbuu9qnn$.dlg@
40tude.net:

> <?php
> $year=1960;
> $artnum=1;
> while ($five[$artnum][2]=$year)
> {
> echo $year."...";
> echo $five[$artnum][0]."</br>"; $artnum++;}
> ?>
>
> It works fine without echo $year.
> Once that's added, FF@^ crashes.

Have you validated the HTML code your PHP script is generating, to find out why this
happens?

> Why do the expert coders at mozilla always fix what ain't broke?

Why do you always blame others for your own mistakes?

> BTW, IE and Opera show the code with no problems.

Proving only that when presented with invalid HTML, different browsers behave in different
ways.
Re: FF26 crashes with simple code! [message #184363 is a reply to message #184360] Sun, 29 December 2013 01:45 Go to previous messageGo to next message
Scott Johnson is currently offline  Scott Johnson
Messages: 196
Registered: January 2012
Karma: 0
Senior Member
On 12/28/2013 4:33 PM, richard wrote:
> <?php
> $year=1960;
> $artnum=1;
> while ($five[$artnum][2]=$year)
> {
> echo $year."...";
> echo $five[$artnum][0]."</br>"; $artnum++;}
> ?>
>
> It works fine without echo $year.
> Once that's added, FF@^ crashes.
> Why do the expert coders at mozilla always fix what ain't broke?
> BTW, IE and Opera show the code with no problems.
>

Define 'crashes'.
Re: FF26 crashes with simple code! [message #184364 is a reply to message #184361] Sun, 29 December 2013 01:56 Go to previous messageGo to next message
Mr Oldies is currently offline  Mr Oldies
Messages: 241
Registered: October 2013
Karma: 0
Senior Member
On Sat, 28 Dec 2013 17:29:06 -0800, Evan Platt wrote:

> On Sat, 28 Dec 2013 19:33:30 -0500, richard <noreply(at)example(dot)com>
> wrote:
>
>> <?php
>> $year=1960;
>> $artnum=1;
>> while ($five[$artnum][2]=$year)
>> {
>> echo $year."...";
>> echo $five[$artnum][0]."</br>"; $artnum++;}
>> ?>
>>
>> It works fine without echo $year.
>> Once that's added, FF@^ crashes.
>> Why do the expert coders at mozilla always fix what ain't broke?
>> BTW, IE and Opera show the code with no problems.
>
> *sigh*
>
> bullis, maybe you should take up something less complex. Like maybe
> coloring books?
>
> PHP clearly isn't for you.

Mr. Fuckup is giving advice?
http://espphotography.com/
why do I get a "403 forbidden!" error message here?
Looks like you've finally made a wise move and joined a real host service.
Welcome to the club.

Yeppers Evan, one of these days you might have an actual working website.
Re: FF26 crashes with simple code! [message #184365 is a reply to message #184364] Sun, 29 December 2013 02:18 Go to previous messageGo to next message
Evan Platt is currently offline  Evan Platt
Messages: 124
Registered: November 2010
Karma: 0
Senior Member
On Sat, 28 Dec 2013 20:56:59 -0500, richard <noreply(at)example(dot)com>
wrote:

> Mr. Fuckup is giving advice?

Me? Mr. fuckup? I'm not the one who's asked 400 times for questions on
his stupid website.

> http://espphotography.com/
> why do I get a "403 forbidden!" error message here?

Because I blacklisted your IP address range.
184.92.0.0/15
184.88.0.0/14


> Looks like you've finally made a wise move and joined a real host service.
> Welcome to the club.

I've already been with a hosting company.

> Yeppers Evan, one of these days you might have an actual working website.

I do. It's on my real domain, which you won't ever find out. LOL

--
To reply via e-mail, remove The Obvious and .invalid from my e-mail address.
Re: FF26 crashes with simple code! [message #184366 is a reply to message #184363] Sun, 29 December 2013 04:49 Go to previous messageGo to next message
Scott Johnson is currently offline  Scott Johnson
Messages: 196
Registered: January 2012
Karma: 0
Senior Member
On 12/28/2013 5:45 PM, Scott Johnson wrote:
> On 12/28/2013 4:33 PM, richard wrote:
>> <?php
>> $year=1960;
>> $artnum=1;
>> while ($five[$artnum][2]=$year)
>> {
>> echo $year."...";
>> echo $five[$artnum][0]."</br>"; $artnum++;}
>> ?>
>>
>> It works fine without echo $year.
>> Once that's added, FF@^ crashes.
>> Why do the expert coders at mozilla always fix what ain't broke?
>> BTW, IE and Opera show the code with no problems.
>>
>
> Define 'crashes'.

I know you saw this reply richard, can you not answer it?

Scotty
Re: FF26 crashes with simple code! [message #184367 is a reply to message #184360] Sun, 29 December 2013 05:42 Go to previous messageGo to next message
Richard Yates is currently offline  Richard Yates
Messages: 86
Registered: September 2013
Karma: 0
Member
On Sat, 28 Dec 2013 19:33:30 -0500, richard <noreply(at)example(dot)com>
wrote:

> <?php
> $year=1960;
> $artnum=1;
> while ($five[$artnum][2]=$year)
> {
> echo $year."...";
> echo $five[$artnum][0]."</br>"; $artnum++;}
> ?>
>
> It works fine without echo $year.
> Once that's added, FF@^ crashes.
> Why do the expert coders at mozilla always fix what ain't broke?
> BTW, IE and Opera show the code with no problems.

By George, I think he's done it again!

Hint: what's your most common error?
Re: FF26 crashes with simple code! [message #184368 is a reply to message #184366] Sun, 29 December 2013 06:18 Go to previous messageGo to next message
Evan Platt is currently offline  Evan Platt
Messages: 124
Registered: November 2010
Karma: 0
Senior Member
On Sat, 28 Dec 2013 20:49:56 -0800, Scott Johnson
<noonehome(at)chalupasworld(dot)com> wrote:

> I know you saw this reply richard, can you not answer it?

It'll be another one of bullis's drive by's - where he doesn't answer.
--
To reply via e-mail, remove The Obvious and .invalid from my e-mail address.
Re: FF26 crashes with simple code! [message #184369 is a reply to message #184367] Sun, 29 December 2013 11:24 Go to previous messageGo to next message
Beauregard T. Shagnas is currently offline  Beauregard T. Shagnas
Messages: 154
Registered: September 2010
Karma: 0
Senior Member
Richard Yates wrote:

> richard the sto0pid wrote:
>
>> <?php
>> $year=1960;
>> $artnum=1;
>> while ($five[$artnum][2]=$year)
>> {
>> echo $year."...";
>> echo $five[$artnum][0]."</br>"; $artnum++;}
>> ?>
>>
>> It works fine without echo $year.
>> Once that's added, FF@^ crashes.

Very few of us have FF@^ ...

>> Why do the expert coders at mozilla always fix what ain't broke?
>> BTW, IE and Opera show the code with no problems.
>
> By George, I think he's done it again!
>
> Hint: what's your most common error?

Aw, you spilled the beans. Now he'll be able to figure it out!

(Or not.) ROF'LMAO

--
-bts
-This space for rent, but the price is high
Re: FF26 crashes with simple code! [message #184370 is a reply to message #184363] Sun, 29 December 2013 13:47 Go to previous messageGo to next message
Mr Oldies is currently offline  Mr Oldies
Messages: 241
Registered: October 2013
Karma: 0
Senior Member
On Sat, 28 Dec 2013 17:45:10 -0800, Scott Johnson wrote:

> On 12/28/2013 4:33 PM, richard wrote:
>> <?php
>> $year=1960;
>> $artnum=1;
>> while ($five[$artnum][2]=$year)
>> {
>> echo $year."...";
>> echo $five[$artnum][0]."</br>"; $artnum++;}
>> ?>
>>
>> It works fine without echo $year.
>> Once that's added, FF@^ crashes.
>> Why do the expert coders at mozilla always fix what ain't broke?
>> BTW, IE and Opera show the code with no problems.
>>
>
> Define 'crashes'.

why do I have to define a simple term?
And prove to me you "know" I read the post.
Servers don['t know who read what.
Re: FF26 crashes with simple code! [message #184371 is a reply to message #184360] Sun, 29 December 2013 14:07 Go to previous messageGo to next message
Arno Welzel is currently offline  Arno Welzel
Messages: 317
Registered: October 2011
Karma: 0
Senior Member
Am 29.12.2013 01:33, schrieb richard:
> <?php
> $year=1960;
> $artnum=1;
> while ($five[$artnum][2]=$year)
> {
> echo $year."...";
> echo $five[$artnum][0]."</br>"; $artnum++;}
> ?>
>
> It works fine without echo $year.

No - it doesn't! It's an endless loop repeating the content of
$five[$artnum][0] over and over again.

PLEASE LEARN THE DIFFERENCE BETWEEN "=" AND "=="!

> Once that's added, FF@^ crashes.

Maybe FF doesn't like endless documents.

> Why do the expert coders at mozilla always fix what ain't broke?

Because it's not their fault when your code is wrong.



--
Arno Welzel
http://arnowelzel.de
http://de-rec-fahrrad.de
Re: FF26 crashes with simple code! [message #184373 is a reply to message #184370] Sun, 29 December 2013 16:02 Go to previous messageGo to next message
Scott Johnson is currently offline  Scott Johnson
Messages: 196
Registered: January 2012
Karma: 0
Senior Member
On 12/29/2013 5:47 AM, richard wrote:
> On Sat, 28 Dec 2013 17:45:10 -0800, Scott Johnson wrote:
>
>> On 12/28/2013 4:33 PM, richard wrote:
>>> <?php
>>> $year=1960;
>>> $artnum=1;
>>> while ($five[$artnum][2]=$year)
>>> {
>>> echo $year."...";
>>> echo $five[$artnum][0]."</br>"; $artnum++;}
>>> ?>
>>>
>>> It works fine without echo $year.
>>> Once that's added, FF@^ crashes.
>>> Why do the expert coders at mozilla always fix what ain't broke?
>>> BTW, IE and Opera show the code with no problems.
>>>
>>
>> Define 'crashes'.
>
> why do I have to define a simple term?
> And prove to me you "know" I read the post.
> Servers don['t know who read what.
>

You don't have to prove anything to me, your insignificant to my life.
However if you are asking questions and making statements, at times they
may need to be elaborated on so those attempting to help can understand
you. And if you do not have the consideration to answer a question from
someone giving their time freely then you deserve neither attention or
help and do not read any further.

Do you want help or not?

For anyone to help you we need to know how YOU define a certain term.

When you say crash to me in terms of a website server, I am thinking you
shut down the server, in terms of Mysql you shut down the DB engine, in
terms of your browser, you crashed stopped either the browser from
working or frooze up your computer.

So I will ask one last time and if you give some smart ass answer, then
you can check one more person off the list who is willing to help for free.

'Define crash'.

Scotty
Re: FF26 crashes with simple code! [message #184374 is a reply to message #184360] Sun, 29 December 2013 18:26 Go to previous messageGo to next message
Olaf S. is currently offline  Olaf S.
Messages: 10
Registered: December 2011
Karma: 0
Junior Member
Am 29.12.2013 01:33, schrieb richard:
> <?php
> $year=1960;
> $artnum=1;
> while ($five[$artnum][2]=$year)
^^^^ should it be == ?
Re: FF26 crashes with simple code! [message #184375 is a reply to message #184374] Sun, 29 December 2013 18:33 Go to previous messageGo to next message
Luuk is currently offline  Luuk
Messages: 329
Registered: September 2010
Karma: 0
Senior Member
On 29-12-2013 19:26, Olaf Schmitt wrote:
> Am 29.12.2013 01:33, schrieb richard:
>> <?php
>> $year=1960;
>> $artnum=1;
>> while ($five[$artnum][2]=$year)
> ^^^^ should it be == ?
>
>
>


no, Richard wrote (on earlier posts) that it would not make any
difference wehn doing that.....

;-)
Re: FF26 crashes with simple code! [message #184376 is a reply to message #184374] Sun, 29 December 2013 18:54 Go to previous messageGo to next message
Jerry Stuckle is currently offline  Jerry Stuckle
Messages: 2598
Registered: September 2010
Karma: 0
Senior Member
On 12/29/2013 1:26 PM, Olaf Schmitt wrote:
> Am 29.12.2013 01:33, schrieb richard:
>> <?php
>> $year=1960;
>> $artnum=1;
>> while ($five[$artnum][2]=$year)
> ^^^^ should it be == ?
>
>
>

You don't understand richard. He comes here with the same problem at
least once a month. And no matter how many times people tell him, he
never learns. He's even claimed there is no difference between '=' and
'=='.

Stick around for a while and get some laughs.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex(at)attglobal(dot)net
==================
Re: FF26 crashes with simple code! [message #184377 is a reply to message #184360] Sun, 29 December 2013 21:35 Go to previous messageGo to next message
Denis McMahon is currently offline  Denis McMahon
Messages: 634
Registered: September 2010
Karma: 0
Senior Member
On Sat, 28 Dec 2013 19:33:30 -0500, richard wrote:

> while ( true ) print "1"; [1]

The computer will do exactly what you instructed it to do. The fault is
not the computer's if the instructions are flawed.

[1] I simplified your code to the minimum needed to demonstrate the error.

--
Denis McMahon, denismfmcmahon(at)gmail(dot)com
Re: FF26 crashes with simple code! [message #184381 is a reply to message #184366] Mon, 30 December 2013 03:05 Go to previous messageGo to next message
Peter H. Coffin is currently offline  Peter H. Coffin
Messages: 245
Registered: September 2010
Karma: 0
Senior Member
On Sat, 28 Dec 2013 20:49:56 -0800, Scott Johnson wrote:
> On 12/28/2013 5:45 PM, Scott Johnson wrote:
>> On 12/28/2013 4:33 PM, richard wrote:
>>> <?php
>>> $year=1960;
>>> $artnum=1;
>>> while ($five[$artnum][2]=$year)
>>> {
>>> echo $year."...";
>>> echo $five[$artnum][0]."</br>"; $artnum++;}
>>> ?>
>>>
>>> It works fine without echo $year.
>>> Once that's added, FF@^ crashes.
>>> Why do the expert coders at mozilla always fix what ain't broke?
>>> BTW, IE and Opera show the code with no problems.
>>>
>>
>> Define 'crashes'.
>
> I know you saw this reply richard, can you not answer it?

Expect "Nevermind. Its working now." before you get a real answer..

--
"25 grams of wafers and 20 ml of wine undergo transubstantiation and
become the flesh and blood of our Lord. How many Joules of heat are
released by the transformation?" --Theological Physics exam, 1997
Re: FF26 crashes with simple code! [message #184394 is a reply to message #184381] Mon, 30 December 2013 04:58 Go to previous message
Scott Johnson is currently offline  Scott Johnson
Messages: 196
Registered: January 2012
Karma: 0
Senior Member
On 12/29/2013 7:05 PM, Peter H. Coffin wrote:
> On Sat, 28 Dec 2013 20:49:56 -0800, Scott Johnson wrote:
>> On 12/28/2013 5:45 PM, Scott Johnson wrote:
>>> On 12/28/2013 4:33 PM, richard wrote:
>>>> <?php
>>>> $year=1960;
>>>> $artnum=1;
>>>> while ($five[$artnum][2]=$year)
>>>> {
>>>> echo $year."...";
>>>> echo $five[$artnum][0]."</br>"; $artnum++;}
>>>> ?>
>>>>
>>>> It works fine without echo $year.
>>>> Once that's added, FF@^ crashes.
>>>> Why do the expert coders at mozilla always fix what ain't broke?
>>>> BTW, IE and Opera show the code with no problems.
>>>>
>>>
>>> Define 'crashes'.
>>
>> I know you saw this reply richard, can you not answer it?
>
> Expect "Nevermind. Its working now." before you get a real answer..
>

He did actually answer me back in a different reply with his same I am
smarter them you wiseass answer.

But you are pretty much on spot however.

Scotty
  Switch to threaded view of this topic Create a new topic Submit Reply
Previous Topic: php double form submit prevent
Next Topic: OT: Where IS everybody?
Goto Forum:
  

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ]

Current Time: Fri Sep 20 19:29:58 GMT 2024

Total time taken to generate the page: 0.02940 seconds