Leser: 3
9 Einträge, 1 Seite |
rioc+2008-06-03 10:58:04--Hallo zusammen
Ich habe ein PERL script (*.pl), welches seine Ausgabe in Form von HTML Tags hat.
Dieses möchte ich nun innerhalb einer HTML site ausführen lassen, dass der print output (die HTML-Tags) in derselben seite ausgegeben werden.
1
2
3
4
5
6
7
8
<html>
<head>
<title>Das ist <?perl print "mein erstes Perl-Programm" ?></title>
</head>
<body>
<p>Perl läuft mit Version <?perl print join ".",map {ord($_)}split//,$^V; ?></p>
</body>
</html>
QuoteGibt es eine Möglichkeit dies ohne CGI zu tun?
[+ $a +] [+ $array[$b] +] [+ "A is $a" +]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<%
my $test = 99;
use constant x=>"Neue Mason Syntax";
%>
<HTML><HEAD></HEAD>
<BODY>
<H1><%= x %></H1>
<pre>
E <%= x or 1 %> A
</pre>
<%-- Aha --%>
$test ist <% ++$test, $test--; print $test; %>
</BODY>
</HTML>
9 Einträge, 1 Seite |