Search found 874 matches
- Thu Sep 27, 2007 1:49 pm
- Forum: General Discussion
- Topic: YSlow for Firebug/Firefox
- Replies: 10
- Views: 3669
For the most part the location of where certain scripts load on a page will have virtually zero impact on a broad band connection. That depends on the size of the scripts. Some sites have more size in the scripts than in the actual page, and by putting the scripts in the proper place, the page will...
- Thu Sep 27, 2007 5:05 am
- Forum: Javascript
- Topic: ActiveX Object.
- Replies: 22
- Views: 4864
- Thu Sep 27, 2007 2:09 am
- Forum: Javascript
- Topic: ActiveX Object.
- Replies: 22
- Views: 4864
- Wed Sep 26, 2007 9:15 pm
- Forum: Javascript
- Topic: ActiveX Object.
- Replies: 22
- Views: 4864
- Wed Sep 26, 2007 7:07 pm
- Forum: Javascript
- Topic: ActiveX Object.
- Replies: 22
- Views: 4864
- Wed Sep 26, 2007 2:01 pm
- Forum: General Discussion
- Topic: YSlow for Firebug/Firefox
- Replies: 10
- Views: 3669
- Wed Sep 26, 2007 1:31 pm
- Forum: Javascript
- Topic: ActiveX Object.
- Replies: 22
- Views: 4864
- Tue Sep 25, 2007 12:36 pm
- Forum: Javascript
- Topic: ActiveX Object.
- Replies: 22
- Views: 4864
Just stay completely away from ActiveX. Most other browsers do not even support it. And not supported on other operating systems so using it is excluding quite a few people. Fortunately, ActiveX is usually used only by obscure, rarely used sites or by hackers trying to gain access and information wh...
- Tue Sep 25, 2007 4:40 am
- Forum: Javascript
- Topic: ActiveX Object.
- Replies: 22
- Views: 4864
Re: ActiveX Object.
Another reason why ActiveX should be banned from all browser usage.figaro11 wrote:Is there such a thing as an ActiveX object model in Internet Explorer? One that would allow me to edit a registry key, Start Page key to be specific?
- Mon Sep 24, 2007 3:55 pm
- Forum: General Discussion
- Topic: YSlow for Firebug/Firefox
- Replies: 10
- Views: 3669
You could use this instead...
http://www.sitereportcard.com
It identifies quite a few things and you don't need a browser plugin so it works with any browser.
http://www.sitereportcard.com
It identifies quite a few things and you don't need a browser plugin so it works with any browser.
- Tue Aug 28, 2007 1:29 pm
- Forum: PHP - Code
- Topic: Does mysql result mem get freed at the end of a function ?
- Replies: 7
- Views: 961
- Tue Aug 28, 2007 1:05 pm
- Forum: PHP - Code
- Topic: Does mysql result mem get freed at the end of a function ?
- Replies: 7
- Views: 961
function foo1() { $res = mysql_query($sql) . . . return } function foo2() { $res = mysql_query($sql) . . . return } . . . So the unused result-resource after a function call keeps building up in memory or gets overwritten on the next query ? It depends upon the version of PHP. Some versions of PHP ...
- Tue Aug 28, 2007 12:53 pm
- Forum: Databases
- Topic: Are you getting an error with what should be good SQL?
- Replies: 7
- Views: 1058
.. which is why you should always wrap your table and column names in backticks to avoid current (and future) reserved name collisions :wink: No, you should avoid reserved words period. The backtick is a way to cover poor SQL coding practices. Also, if you are writing portable SQL code backticks ar...
- Mon Aug 27, 2007 8:33 pm
- Forum: PHP - Code
- Topic: rand() or mt_rand()... which is better to use?
- Replies: 5
- Views: 839
Re: rand() or mt_rand()... which is better to use?
Is mt_rand() really faster? Is it *always* better to use? Yes and Yes We have a browser based game that uses quite a few random numbers and after quite a bit of testing we found that rand() had a bad habit of producing the same number chains even though it reseeds the generator automatically with P...
- Mon Aug 27, 2007 8:24 pm
- Forum: Databases
- Topic: InnoDB vs. MyISAM
- Replies: 7
- Views: 3481
We run many e-commerce sites and NEVER use any form of row or table locking MySQL automatically use row/table locking ( for every query it processes) depending on the db engine in use. For MyISAM tables it means entire table is unavailable while processing statement. The following situation is not ...