Viewing file: ming.php (1.58 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
include "langsettings.php";
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta name="author" content="Kai Oswald Seidler, Kay Vogelgesang, Carsten Wiedmann">
<link href="xampp.css" rel="stylesheet" type="text/css">
<title><?php echo $TEXT['flash-head']; ?></title>
</head>
<body>
<br><h1><?php echo $TEXT['flash-head']; ?></h1>
<?php
$text = $_REQUEST['text'];
if ($text == "") {
$text = "ceci n est pas un ami d apache";
}
?>
<object data="mingswf.php?<?php echo htmlentities("text=".urlencode($text)); ?>" width="520" height="320" type="application/x-shockwave-flash">
<param name="movie" value="mingswf.php?<?php echo htmlentities("text=".urlencode($text)); ?>">
<param name="loop" value="true">
<a href="http://www.macromedia.com/go/getflashplayer"><img src="http://www.macromedia.com/images/shared/download_buttons/get_flash_player.gif" width="88" height="31" alt="get flash player" title=""></a>
</object>
<p class=small><?php echo $TEXT['iart-text1']; ?></p>
<form name="ff" action="<?php echo basename($_SERVER['PHP_SELF']); ?>" method="get">
<input type="text" name="text" value="<?php echo htmlspecialchars($text); ?>" size="30">
<input type="submit" value="<?php echo $TEXT['flash-ok']; ?>">
</form>
<?php include 'showcode.php'; ?>
</body>
</html>
|