Try putting

[-

  $optDisableHtmlScan = 1;
  $optDisableTableScan = 1;
  $optRawInput = 1;
  $escmode = 0;

-]

:) then your html/table whatever code is left alone...

egill

-----Original Message-----
From: Gerald Richter [mailto:[EMAIL PROTECTED]]
Sent: 21. apríl 2000 19:13
To: Umar Goldeli; [EMAIL PROTECTED]
Subject: RE: Dissapearing /TR's


>
> <tr><td>[+ $head->[$col] +]:<input type="textbox" name="[+ $head->[$col]
> +]" value="[+ $result -> [$row][$col] +]"></td></tr>
>
Does it change anything if you change your code to the following (intention
is just for better readablility)?

<tr>
  <td>
    [- $h = $head->[$col] ; $r = $result -> [$row][$col] -]
    [+ $h +]:<input type="textbox" name="[+ $h +]" value="[+ $r +]">
  </td>
</tr>

Gerald


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to