소스 검색

* Add an input box in sample web page figlet.php

tags/v0.99.beta17
Nicolas Vion nico 17 년 전
부모
커밋
c93f953445
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. +2
    -1
      caca-php/examples/www/figlet.php

+ 2
- 1
caca-php/examples/www/figlet.php 파일 보기

@@ -9,6 +9,7 @@ header('Content-Type: text/html; charset=UTF-8');
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
</head>
<body>
<form method="get" action=""><input name="str"/><input type="submit" value="OK"/></form>
<?php
/*
* figlet.php sample program for libcaca php binding
@@ -59,7 +60,7 @@ $dir = opendir($path);
while (($it = readdir($dir)) != false) {
if (is_file($path.$it) and ereg("\.[tf]lf$", $it)) {
echo "<b>font : $it</b>\n";
show_figlet("Libcaca", $path.$it);
show_figlet(isset($_GET["str"]) ? $_GET["str"] : "Libcaca", $path.$it);
}
}
?>


불러오는 중...
취소
저장