Leser: 22
1
2
3
4
5
6
<!--#exec cgi="cgi-bin/test.pl" -->
<form method="post" action="test.shtml" name="test">
<input name="textfeld1" type="text" value="blubb1" />
<input name="textfeld2" type="text" value="blubb2" />
<button type="submit" name="submit" value="1">Go</button>
</form>
1 2 3 4 5 6 7
use strict; use CGI qw/:standard/; print "content-type: text/html\n\n"; foreach (param) { print "CGI ".$_."; "; } print "<table>"; foreach (keys %ENV) { print '<tr><td>'.$_.'</td><td>'.$ENV{$_}.'</td></tr>'; } print '</table>';
Guest smanAbgesehen davon finde ich die Vorteile von SSI sehr schön, die Seiten als einfach .htm-Seiten darstellen zu können. Weg, möchte ich ohne sinnvolle Alternative also nicht.
2010-03-18T16:32:03 pqurls mit rewrite "schön" macht
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!--#if expr="$wassent = 1" -->
<!--#exec cgi="cgi-bin/test.pl" -->
<!--#set var="wassent" value="0" -->
<!--#else -->
<html>
<body>
<form method="post" action="test.shtml" name="test">
<input name="textfeld1" type="text" value="blubb1" />
<input name="textfeld2" type="text" value="blubb2" />
<!--#set var = "wassent" value = "1" -->
<button type="submit" name="submit" value="1">Go</button>
</form>
</body>
</html>
<!--#endif -->