Something about Firefox ?

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
angelena
Forum Commoner
Posts: 53
Joined: Mon Nov 22, 2004 4:10 am

Something about Firefox ?

Post by angelena »

Hi everyone,

Im not sure where im suppose to place this question.

Ex : When i execute function callBill(),
it will call => function A();
functionB();
function Socket();
and display result on screen at the end .

When test using IE, it works fine i.e run once of this list of functions and display result on screen.
When test using Firefox, it will run once of this list, which take approx 31secs, and RE-RUN again those functions ,only after finish executing 2nd time of this functions it display result to the screen.


funtion Socket() is a function 'talking' to another module via socket ,there, the double request by Firefox cause everything slow down extremely.

Does anyone experience similar case before?
User avatar
neophyte
DevNet Resident
Posts: 1537
Joined: Tue Jan 20, 2004 4:58 pm
Location: Minnesota

Re: Something about Firefox ?

Post by neophyte »

Sounds like a "feature." Can you post more code or be more descriptive?:
User avatar
aaronhall
DevNet Resident
Posts: 1040
Joined: Tue Aug 13, 2002 5:10 pm
Location: Back in Phoenix, missing the microbrews
Contact:

Post by aaronhall »

Is this PHP or JS?
angelena
Forum Commoner
Posts: 53
Joined: Mon Nov 22, 2004 4:10 am

Post by angelena »

This is in PHP

Ermm...descriptive?
Actually it just a very normal function, when execute it will execute a list of other functions.

And one of the function involves socket programming
Post Reply