This site is mobile accessible. Press the "Tap Here" button to use a different font-size.


Smartphone icons created by Freepik - Flaticon

fopen()

AJAX = Asynchronous JavaScript and XML CSS = Cascading Style Sheets HTML = Hyper Text Markup Language PHP = PHP Hypertext Preprocessor SQL = Structured Query Language SVG = Scalable Vector Graphics XML = EXtensible Markup Language
<?php
$myfile = fopen("include/webdictionary.txt", "r") or die("Unable to open file!");
echo fread($myfile,filesize("include/webdictionary.txt"));
fclose($myfile);
?>