[phpug] Re: Contracter Resumes

2009-05-16 Thread Jochen Daum
Hi, Jochen, I just got your contracting role via Seek. Looks very interesting. Please fill the application form. Strange you haven't seen it here? I had someone contact me from the PHPUG. Kind Regards, Jochen Daum Chief Automation Officer Automatem Ltd Phone: 09 630 3425 Mobile: 021

[phpug] Re: [phpug][OT] Large Database Tables

2009-05-16 Thread Greg
Try removing the t.timestamp DATE_SUB( NOW( ) , INTERVAL 7 and replacing if with t.timestamp '$precalculated_timestamp' otherwise the DB has to perform that calculation on all the rows not excluded by the other search arguments, which looks like 65000 in your explain. It can't assume that

[phpug] Re: Img alt tag accessibility

2009-05-16 Thread Michael Adams
But table based design is a cow! On Sat, 16 May 2009 16:32:54 +1200 Came this utterance formulated by Keri Henare to my mailbox: In other words one hack to fix another. I haven't used a spacer.gif in over half a decade. They're as useful as tits on a bull. Keri Henare +64 21 874 552

[phpug] Re: [phpug][OT] Large Database Tables

2009-05-16 Thread Dmitry Ruban
Greg, Have you ever heard about ACID term related to databases? A in this abbreviation stands for Atomicity. Single queries even if is just SELECT considered as simple transactions. Time inside transaction is constant and is equal to a time when transaction starts. Your assumption that the

[phpug] Re: Table to CSS

2009-05-16 Thread Pete McVicar
Are attempting to do something like this? http://blog.mozilla.com/webdev/2009/02/20/cross-browser-inline-block/ 2009/5/15 Simon Holywell si...@holywell.com.au: Not sure I understand what you mean; though these rows have no effect on the background like the table did.  Do you have a demo URL?

[phpug] Re: Table to CSS

2009-05-16 Thread Michael
Thanks for the assistance so far. I am making good progress and I have gotten to the point where the table tag does not exist anywhere in code. Now what I need to know is how to get a (small) div to align itself in the bottom right hand corner of the (large) div it's within. Can I do this

[phpug] Re: Table to CSS

2009-05-16 Thread Nathan Cox
If the larger div has position:absolute or position:relative you can do this: #SmallDiv { position:absolute; right:0; bottom:0; } Michael wrote: Thanks for the assistance so far. I am making good progress and I have gotten to the point where the table tag does not exist anywhere

[phpug] Re: Table to CSS

2009-05-16 Thread Keri Henare
How dare you not mention http://www.alistapart.com/ --- Keri Henare [e]k...@henare.co.nz [m]021 874 552 [w]www.kerihenare.com On 17/05/2009, at 6:55 AM, Michael Adams wrote: On Sat, 16 May 2009 23:56:38 +1200 Came this utterance

[phpug] Re: multiple style sheets

2009-05-16 Thread Nicolaas Thiemen Francken - Sunny Side Up
2009/5/17 Michael ph...@nettrust.co.nz: What I want to do is specify CSS style sheet information that is used across multiple pages in a style.css file, and information that is only used in one page, within the page itself. 1. How can this be done? ?php echo ' link rel=stylesheet

[phpug] Re: multiple style sheets

2009-05-16 Thread Nicolaas Thiemen Francken - Sunny Side Up
correction: link rel=stylesheet type=text/css href=css/'.$_SERVER[SCRIPT_NAME].' / should be: link rel=stylesheet type=text/css href=css/'.$_SERVER[SCRIPT_NAME].'.css / [UNTESTED] --~--~-~--~~~---~--~~ NZ PHP Users Group: http://groups.google.com/group/nzphpug

[phpug] Re: Table to CSS

2009-05-16 Thread Nathan Cox
I would say an ul would be most appropriate here, since it's a list of products. The fact that they're in a table-shapped grid is just coincidental. Stig Manning wrote: Michael wrote: What I had previously was a tableless page layout, with a table to display products in 2 rows of 5

[phpug] headers and lists

2009-05-16 Thread Michael
Is it semantically correct to use header tags in a product links list, or menu, or is this a myth? I thought header tags were for page and section titles. Michael --~--~-~--~~~---~--~~ NZ PHP Users Group: http://groups.google.com/group/nzphpug To post, send

[phpug] Re: headers and lists

2009-05-16 Thread Nathan Cox
Header tags might be approriate if it's the kind of product list that has a block of text and maybe a product picture under each link but probably not if it's more of a menu. Like you say, they're for marking sections of the page/content. Cheers, Nathan Michael wrote: Is it semantically