<form action="<?php echo $_SERVER['PHP_SELF']; ?> " method="post"> <input type="text" name="name" style="width: 250px;" class="textbox" /> <input type="submit" value="Konvertera" class="button_80" /> </form> <br /><br /> Fyll bara i ditt namn och tryck på "Konvertera" så får du ditt namn skrivet på flera olika sätt, just nu finns:<br /> <b>Binärt, HEX, Fjortis-text, LeetSpeak, Rövarspråket, Betydelsen, MD5, Fonetiskt</b> </p> </div> <?php if (isset($_POST['name'])) { echo '<p class="subtitle">Resultat</p>'; echo '<div>'; echo '<i>Ditt namn skrivet med <b>ettor och nollor:</b></i><BR>' . makeBinary($_POST['name']) . '<BR><BR>'; echo '<i>Ditt namn skrivet i <b>HEX:</b></i><BR>' . makeHEX($_POST['name']) . '<BR><BR>'; echo '<i>Ditt namn skrivet med <b>fjortis-text:</b></i><BR>' . makeFjortis($_POST['name']) . '<BR><BR>'; echo '<i>Ditt namn skrivet med <b>leetspeak:</b></i><BR>' . makeLeetSpeak($_POST['name']) . '<BR><BR>'; echo '<i>Ditt namn skrivet på <b>rövarspråket:</b></i><BR>' . makeRovarSprak($_POST['name']) . '<BR><BR>'; echo '<i>Ditt namns <b>betydelse:</b></i><BR>' . makeBetydelse($_POST['name']) . '<BR><BR>'; echo '<i>Ditt namn krypterat med <b>MD5:</b></i><BR>' . md5($_POST['name']) . '<BR><BR>'; echo '<i>Ditt namn skrivet med <b>morse-kod:</b></i><BR>' . makeMorse($_POST['name']) . '<BR><BR>'; echo '<i>Ditt namn skrivet med det <b>fonetiska alfabetet:</b></i><BR>' . makePhonetic($_POST['name']) . '<BR><BR>'; echo '<i><b>Alla Barnen-historia</b> med ditt namn:</i><BR>' . getAllaBarnen($_POST['name']) . '<BR><BR>'; echo '<i>Ditt namn skrivet <b>baklänges</b>:</i><br />' . strrev($_POST['name']) . '<br /><br />'; echo '</div>'; } echo rounded_corners_bottom(); ui_bottom();
<?php function makeHEX($st) { for ($i = 0; $i < strlen($st); $i++) { $hex[] = sprintf("%02X", ord($st[$i])); } return join(" ", $hex); } $f = fopen("C:\\Server\\domains\\localhost\\public_html\\book.txt", "rb"); echo makeHEX(fgets($f, 100)) . "<br>\n"; $f = fopen("C:\\Server\\domains\\localhost\\public_html\\book.txt", "rt"); echo makeHEX(fgets($f, 100)) . "<br>\n"; echo "\n\n\n"; $f1 = fopen("C:\\Server\\domains\\localhost\\public_html\\book.txt", "r+"); $f2 = fopen("C:\\Server\\domains\\localhost\\public_html\\book2.txt", "r+"); $book2 = fread($f2, 100000); echo $book2; $book_write = fwrite($f1, $book2); echo "\n\n"; $fname = tempnam("C:\\Server\\domains\\localhost\\public_html", date("Ymd")); $f12 = fopen($fname, "w"); echo "\n\n"; chmod("book.txt", 0755); $fileuid = fileperms("book.txt"); echo $fileuid; chmod("book.txt", 0755); echo "\n\n"; print_r(stat("book.txt")); echo "\n\n"; $mtime = fileatime(__FILE__);