Re: HTML Tables

2008-08-19 Thread Stefan Behnel
Amie wrote: > Thanks for your help so far. Ok here's a scenario: I have to create a > site that displays 34 html tables. > In each of these tables the following information has to be displayed: > logo (image), site name, date, time. > Remember: in all of these 34 tables. the information displayed

Re: HTML Tables

2008-08-19 Thread Mensanator
On Aug 19, 9:33 am, Amie <[EMAIL PROTECTED]> wrote: > Hi, > Thanks for your help so far. Ok here's a scenario: I have to create a > site that displays 34 html  tables. > In each of these tables the following information has to be displayed: > logo (image), site name, date, time. You want 34 tables

Re: HTML Tables

2008-08-18 Thread Adrian Smith
On Aug 19, 6:49 am, Fredrik Lundh <[EMAIL PROTECTED]> wrote: > Adrian Smith wrote: > >> Just want to know how to create html tables using a for loop. > >> I need to display 34 html tables, so I figured a for loop will do. > >> Please show me an example of how to do that. > > > for i in range(33): >

Re: HTML Tables

2008-08-18 Thread Fredrik Lundh
Adrian Smith wrote: Just want to know how to create html tables using a for loop. I need to display 34 html tables, so I figured a for loop will do. Please show me an example of how to do that. for i in range(33): range(33) returns 33 numbers, not 34 (the upper bound is not inclusive).

Re: HTML Tables

2008-08-18 Thread Gabriel Genellina
En Mon, 18 Aug 2008 09:05:30 -0300, Adrian Smith <[EMAIL PROTECTED]> escribió: > On Aug 18, 7:16 pm, Amie <[EMAIL PROTECTED]> wrote: >> Afternoon all. >> >> Just want to know how to create html tables using a for loop. >> I need to display 34 html tables, so I figured a for loop will do. >> Please

Re: HTML Tables

2008-08-18 Thread Adrian Smith
On Aug 18, 7:16 pm, Amie <[EMAIL PROTECTED]> wrote: > Afternoon all. > > Just want to know how to create html tables using a for loop. > I need to display 34 html tables, so I figured a for loop will do. > Please show me an example of how to do that. for i in range(33): print "" for j in r