File: zoekop.php

package info (click to toggle)
gnuvd 1.0-1
  • links: PTS
  • area: contrib
  • in suites: sarge
  • size: 576 kB
  • ctags: 87
  • sloc: sh: 3,454; ansic: 847; makefile: 63; lisp: 11; php: 9
file content (11 lines) | stat: -rw-r--r-- 274 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
<?
$antwoord = `/usr/local/bin/gnuvd $woord`;
echo "<HTML>";
echo "<BODY>";
echo "Betekenis van $woord:";
echo "<BR>";
$htmlantwoord = htmlentities($antwoord) ; // Zet speciale karakters om naar html tags.
echo "<PRE>$htmlantwoord</PRE>";
echo "</BODY>";
echo "</HTML>";
?>