LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Programming (https://www.linuxquestions.org/questions/programming-9/)
-   -   strange problem... (https://www.linuxquestions.org/questions/programming-9/strange-problem-96670/)

..:eMa:.. 09-25-2003 05:41 AM

strange problem...
 
Hi!

I've strange problem with a html-module, a simple submit button...

during my test, only mozilla don't show it, but Safari, IE show it regulary and functional.

Someone have some ideas?

Cia!
..:eMa:..

glj 09-25-2003 05:53 AM

Make sure you've included and closed all your tags correctly. This is especially true of the <form> tag.

..:eMa:.. 09-25-2003 06:11 AM

I've checked it, especially </form> ...

I've test over kon

then 09-25-2003 06:21 AM

Hi

Post your <form> code, I'll check it on my system

regards
theN

..:eMa:.. 09-25-2003 08:26 AM

<form name="frm_ins2" method="post" action=/inserimento/inser_new/inserimento_1new.php>
<input type="hidden" name="query" value=INSERT#INTO#tb_anag_macc#(sn,#sn_model,#sn_cli,#sn_note,#date_it,#sn_family)#VALUES#(376,#9,#6 ,#93,#"25-Set-2003",#0)><input type="hidden" name="query_note" value=INSERT#INTO#tb_note#(sn_note,#note)#VALUES#(93,#"Nessuna#nota")><br><font color="#999999">A</font> <input type="submit" name="submit2" value="Really insert tools?"></form>

nephilim 09-25-2003 08:31 AM

Looks like a problem with quotes. Try this:

Code:

<form name="frm_ins2" method="post" action="/inserimento/inser_new/inserimento_1new.php">
<input type="hidden" name="query" value="INSERT#INTO#tb_anag_macc#(sn,#sn_model,#sn_cli,#sn_note,#date_it,#sn_family)#VALUES#(376,#9,#6
,#93,#'25-Set-2003',#0)">
<input type="hidden" name="query_note" value="INSERT#INTO#tb_note#(sn_note,#note)#VALUES#(93,#'Nessuna#nota')">
<br>
<font color="#999999">A</font>
<input type="submit" name="submit2" value="Really insert tools?">
</form>


..:eMa:.. 09-25-2003 09:39 AM

I've tried it, but seems don't work.
But...
...I've changed the resolution and I discovered that the submit button is like over a table...is it possible?

Zerodark 09-25-2003 07:52 PM

if you are using tables on the webpage it is very possible. it seems to happen to me quite often >_< if you are in fact using tables, just include the submit button in the current table, or make a new one for it.

..:eMa:.. 09-26-2003 03:03 AM

Quote:

Originally posted by Zerodark
just include the submit button in the current table, or make a new one for it.
...is now included in the table!

why in some browser work instead other would't work?

glj 09-26-2003 10:31 AM

Browsers always have different renderings of the same pages depending on how compliant the browsers engine is, or how compliant the HTML code is.

Just one of those quirks I guess!

glj


All times are GMT -5. The time now is 01:14 PM.