HTML tag embed quiz

HTML tag embed quiz

am 14.12.2006 10:18:07 von dittonamed

To anyone who reads this, thank you very much. I have an annoying
problem hidden in the code below and I need your help. It causes
different problems in different browsers, but all point to a problem
with how the table tags are embedded. Dreamweaver even shows some lines
as highlighted yellow. I put a '%' in front of the lines that
dreamweaver highlights for a hint.

Anyone?

####################



%


# Search Form
php?>
%
%





Location



 | 



style="display: inline;">


%
 

# Advanced Search Options
?>

Lookup an ID


Re: HTML tag embed quiz

am 14.12.2006 11:10:34 von Steve Pugh

dittonamed@gmail.com wrote:
> To anyone who reads this, thank you very much. I have an annoying
> problem hidden in the code below and I need your help. It causes
> different problems in different browsers, but all point to a problem
> with how the table tags are embedded. Dreamweaver even shows some lines
> as highlighted yellow. I put a '%' in front of the lines that
> dreamweaver highlights for a hint.

Depending on how you've set your site up inside Dreamweaver, it may
well not be aware of what the PHP is doing. So it may be judging your
code on the assumption that the HTML it can see is the HTML that will
be output. If you want to know what DW thinks of your actual code, save
a copy of the of the published page and open that up in DW.

However, there does seem to be a problem with your code as is:

> %
>



You start a form in one table cell, in one row

> %
> %
>
>

>

>

And end it in another table cell, in another row. Fix that and see if
the problem still exists.

Steve

Re: HTML tag embed quiz

am 14.12.2006 11:34:46 von dittonamed

Got it! That took out all the HTML oddities. One questions though... If
forms can't be opened in one td cell and closed in another td cell, how
is one supposed to use use tables to layout forms? In my example, it
seems necessary.

Thanks Steve for the reply

Steve Pugh wrote:
> dittonamed@gmail.com wrote:
> > To anyone who reads this, thank you very much. I have an annoying
> > problem hidden in the code below and I need your help. It causes
> > different problems in different browsers, but all point to a problem
> > with how the table tags are embedded. Dreamweaver even shows some lines
> > as highlighted yellow. I put a '%' in front of the lines that
> > dreamweaver highlights for a hint.
>
> Depending on how you've set your site up inside Dreamweaver, it may
> well not be aware of what the PHP is doing. So it may be judging your
> code on the assumption that the HTML it can see is the HTML that will
> be output. If you want to know what DW thinks of your actual code, save
> a copy of the of the published page and open that up in DW.
>
> However, there does seem to be a problem with your code as is:
>
> > %
> >


>
> You start a form in one table cell, in one row
>
> > %
> > %
> >
> >
>
> >

> >
>
> And end it in another table cell, in another row. Fix that and see if
> the problem still exists.
>
> Steve

Re: HTML tag embed quiz

am 14.12.2006 11:49:38 von jkorpela

Scripsit dittonamed@gmail.com:

> Got it!

Got what? Please learn how to quote on Usenet. Try googling for "quoting on
usenet", for example.

> If forms can't be opened in one td cell and closed in another td
> cell, how is one supposed to use use tables to layout forms?

Using correct syntax, of course. Putting the entire form inside a cell, or
puttin the entire table inside the form. For details see
http://www.cs.tut.fi/~jkorpela/forms/tables.html

> In my example, it seems necessary.

You posted just a snippet of code, not a genuine example URL. Anyway, the
odds are that it is far from necessary.

--
Jukka K. Korpela ("Yucca")
http://www.cs.tut.fi/~jkorpela/

Re: HTML tag embed quiz

am 14.12.2006 12:07:31 von dittonamed

Please just keep it to yourself. This sort of message is just trash to
any reader

Jukka K. Korpela wrote:
> Scripsit dittonamed@gmail.com:
>
> > Got it!
>
> Got what? Please learn how to quote on Usenet. Try googling for "quoting on
> usenet", for example.
>
> > If forms can't be opened in one td cell and closed in another td
> > cell, how is one supposed to use use tables to layout forms?
>
> Using correct syntax, of course. Putting the entire form inside a cell, or
> puttin the entire table inside the form. For details see
> http://www.cs.tut.fi/~jkorpela/forms/tables.html
>
> > In my example, it seems necessary.
>
> You posted just a snippet of code, not a genuine example URL. Anyway, the
> odds are that it is far from necessary.
>
> --
> Jukka K. Korpela ("Yucca")
> http://www.cs.tut.fi/~jkorpela/

Re: HTML tag embed quiz

am 14.12.2006 12:47:25 von Steve Pugh

dittonamed@gmail.com wrote:
> Steve Pugh wrote:
>
> > You start a form in one table cell, in one row
> > And end it in another table cell, in another row. Fix that and see if
> > the problem still exists.
>
> Got it! That took out all the HTML oddities. One questions though... If
> forms can't be opened in one td cell and closed in another td cell, how
> is one supposed to use use tables to layout forms? In my example, it
> seems necessary.

Top posting fixed, please don't do it again.

As Jukka has already told you, it isn't necessary at all. If you decide
that your form is best structured as a table (some are, some aren't -
many simple forms can be laid out with HTML-, fieldset, label, etc. and
appropriate CSS) then place a table inside the form element. What
almost certainly isn't necessary in your case is the overall table
surrounding the two forms.

Steve

Re: HTML tag embed quiz

am 14.12.2006 16:10:32 von lws4art

dittonamed@gmail.com wrote:
> Please just keep it to yourself. This sort of message is just trash to
> any reader

^^^^^^^
This is called "Top Posting", do not do it in the NG. Put your comments
after quoted bits of previous message.


>
> Jukka K. Korpela wrote:
>> Scripsit dittonamed@gmail.com:
>>
>>> Got it!
>> Got what? Please learn how to quote on Usenet. Try googling for "quoting on
>> usenet", for example.
>>
>>> If forms can't be opened in one td cell and closed in another td
>>> cell, how is one supposed to use use tables to layout forms?
>> Using correct syntax, of course. Putting the entire form inside a cell, or
>> puttin the entire table inside the form. For details see
>> http://www.cs.tut.fi/~jkorpela/forms/tables.html
>>
>>> In my example, it seems necessary.
>> You posted just a snippet of code, not a genuine example URL. Anyway, the
>> odds are that it is far from necessary.

Jukka may be brutally blunt, but he was correct on all points. He will
not hold you hand but will point you in the correct direction.

--
Take care,

Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com

Andrey

am 17.05.2007 02:46:41 von Hector

http://30a375854e4ef809f1091ef0621ba5c9-t.meuamq.info href="http://30a375854e4ef809f1091ef0621ba5c9-h.meuamq.info" >30a375854e4ef809f1091ef0621ba5c9
[url]http://30a375854e4ef809f1091ef0621ba5c9-b1.meuamq.info[ /url]
[url=http://30a375854e4ef809f1091ef0621ba5c9-b2.meuamq.info] 30a375854e4ef809f1091ef0621ba5c9[/url]
[u]http://30a375854e4ef809f1091ef0621ba5c9-b3.meuamq.info[/u ]
a2d4645f3be5a34796fb67577d58472d

Greggory

am 25.05.2007 17:51:02 von clint

961bd7691cce48575417990b97c96d70
http://convenzione-internazionale-diritto-persona-disabilita .sfmyzx.org/
[url=http://festa-capodanno-provincia-napoli-2007.nuusjq.org /]http://festa-capodanno-provincia-napoli-2007.nuusjq.org/[/ url]
[u]http://notte-prima-esame-colonna-sonore.itwasb.org/[/u]
[url=http://vivaio-pescara-francavilla-al-mare.pmdxoz.org/]h ttp://vivaio-pescara-francavilla-al-mare.pmdxoz.org/[/url]
http://amministrazione-autonoma-dei-monopolio-stato-bologna. lxcjch.org/
[url=http://rosanna-lambertucci-com-dieta-donna.pmdxoz.org/] http://rosanna-lambertucci-com-dieta-donna.pmdxoz.org/[/url]
[url]http://gta-sa-adreas-scaricare-gratis.pmdxoz.org/[/url]
[url=http://olio-di-fegato-di-merluzzo.lxcjch.org/]http://ol io-di-fegato-di-merluzzo.lxcjch.org/[/url]
[u]http://foto-basilica-san-giovanni-laterano.lxcjch.org/[/u ]
http://istituto-comprensivo-fiorenzuola-d-arda.lxcjch.org/
f4e92eaca3a0992e5377af9d5fb45ea4

Dwayne

am 26.05.2007 09:50:55 von jonatan

1c4851258387ef65e321a639e0856e4e
[url=http://wfcqxw.info/abrir/abrir-conta-gratuita-msn.html] http://wfcqxw.info/abrir/abrir-conta-gratuita-msn.html[/url]
[url]http://ovvkft.info/maternidade/maternidade-hospital-oct aviano-neves.html[/url]
[url]http://xwqumn.info/resultado/resultado-concurso-cespe-u nb-br.html[/url]
[u]http://lcitij.info/ufovia/ufovia-fanzine.html[/u]
[url=http://wfcqxw.info/sindicato/sindicato-dos-engenheiro-n o-estado-de-sao-paulo.html]http://wfcqxw.info/sindicato/sind icato-dos-engenheiro-no-estado-de-sao-paulo.html[/url]
[url]http://ovvkft.info/seguranca/seguranca-pan-americano-20 07.html[/url]
http://lcitij.info/shereton/shereton-com-br.html
http://xwqumn.info/paisagem/paisagem-preto-e-branco.html
[url=http://xwqumn.info/mensagem/mensagem-foto-natureza-slid e.html]http://xwqumn.info/mensagem/mensagem-foto-natureza-sl ide.html[/url]
http://wfcqxw.info/imovel/imovel-unamar.html
3c6c60ce2277246c0f4063c97808fccb