Git Codebase - Sn0wlink IT
ToDo
Code:
Download ZIP
🗀 notes
LICENSE
README.md
index.php
layout.php
screenshot.png
style.css
index.php
<?php echo " <html> <head> <link rel='stylesheet' type='text/css' href='style.css'> </head> <center><h1>ToDo List</h1></center> "; // List Notes foreach (glob("notes/*", GLOB_BRACE) as $file) { // Open each file $openfile = file_get_contents("$file"); $notecontent = str_replace("\r\n","<br />","$openfile"); echo " <div class='note'> $notecontent </div> "; } ?>