Sebastjan Trepca
trepca at gmail.com
Tue Jan 31 03:48:55 EST 2006
What is that "res" variable? Did you mean "req"? Sebastjan On 1/31/06, python eager <python_eager at yahoo.com> wrote: > Hi, > i am printing datas in table format.In this totally 8 rows are there. it > print 8 row values, but display is single row. It won't create new row. How > to add new table row in between coding. > > <% > value = req.field("vall") > for n in range(len(value)): > res.write("<td>") > res.write("%s" % value[n]) > res.write("</td>") > > %> > > Please help me > > regards > Python > > ________________________________ > Do you Yahoo!? > With a free 1 GB, there's more in store with Yahoo! Mail. > > > _______________________________________________ > Mod_python mailing list > Mod_python at modpython.org > http://mailman.modpython.org/mailman/listinfo/mod_python > > >
|