1
2
3
4
5
6
7
8
9
10
11
12
13
<html>
<head>
Hallo
</head>
<body>
<?php passthru("perl skript.pl"); ?>
Test
</body>
</html>
1 2 3 4 5 6 7 8 9 10 11 12 13
<html> <head> Hallo </head> <body> <?php passthru("perl skript.pl"); ?> Test </body> </html>
2011-05-24T11:43:42 pqder IE stellt anscheinend die leerzeilen im ersten beispiel nicht gar.
1
2
3
4
5
6
7
8
<div class="codebox"><table class="code"><tr><th colspan="2">Code: (<a href="/bat/poard/message/149111/code/code_149111_1.txt">dl</a>
)</th></tr>
<tr>
<td class="codelines" width="15"><div class="codelines"><pre><tt>1<br>2<br>3<br>4<br>5<br>6<br>7<br>8</tt></pre></div></td>
<td valign="top">
<div class="code"><pre><tt>Zeile 1<br>Zeile 2<br><br>Zeile 4<br>Zeile 5<br><br>Zeile 7<br>Zeile 8</tt></pre></div>
</td>
</tr></table></div>
2011-05-24T12:04:58 topegDas problem hatte ich auch mal mit dem IE die Version weiß ich nicht mehr seit dem mach ich bei <br><br> immer ein dazwischen. Ist zwar nicht schön funktioniert aber. einfache Leerzeichen funktionieren auch nicht immer.
<div class="code"><pre><tt><html><br> <br><head><br>Hallo<br></head><br> <br><body><br><?php passthru("perl skript.pl"); ?><br>Test<br></body><br> <br> <br></html></tt></pre></div>