アットウィキロゴ

ex042704

<html>
    <head>
        <title>Example</title>
    </head>
    <body>

     <?php
$filename = "panpan.txt";
$string = "あいうえお";
$fp = fopen($filename, "w");
fwrite($fp, $string);
fclose($fp);
?>

     </body>
</html>
最終更新:2009年04月27日 10:01