├── includes ├── log.JPG ├── config.php ├── topbar.php ├── quotes.js ├── header.php └── footer.php ├── losts_img ├── lId_5c0e7a9a0d4458.75001749.jpg ├── lId_5c0e7d158cf775.61584268.jpg └── lId_5c0e7d711e5074.61449387.png ├── README.md ├── index.php ├── quotes.xml ├── friendlist.xml ├── found_prc.php ├── found.1.php ├── found.php ├── css └── framework.css ├── find.php └── js └── jquery.js /includes/log.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/StuffLost/HEAD/includes/log.JPG -------------------------------------------------------------------------------- /losts_img/lId_5c0e7a9a0d4458.75001749.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/StuffLost/HEAD/losts_img/lId_5c0e7a9a0d4458.75001749.jpg -------------------------------------------------------------------------------- /losts_img/lId_5c0e7d158cf775.61584268.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/StuffLost/HEAD/losts_img/lId_5c0e7d158cf775.61584268.jpg -------------------------------------------------------------------------------- /losts_img/lId_5c0e7d711e5074.61449387.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghav-wd/StuffLost/HEAD/losts_img/lId_5c0e7d711e5074.61449387.png -------------------------------------------------------------------------------- /includes/config.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # StuffLost 2 | It happens a lot of time that we loose our stuff inside the hostel for this reason I had made an online platform where people can share lost findings and the person who had lost it could find it. 3 | -------------------------------------------------------------------------------- /includes/topbar.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /includes/quotes.js: -------------------------------------------------------------------------------- 1 | var x, xmlhttp, xmlDoc; 2 | xmlhttp = new XMLHttpRequest(); 3 | xmlhttp.open("GET", "quotes.xml", false); 4 | xmlhttp.send(); 5 | xmlDoc = xmlhttp.responseXML; 6 | x = xmlDoc.getElementsByTagName("quote"); 7 | var table 8 | 9 | for (i = 0; i < x.length; i++) { 10 | table += x[i].getElementsByTagName("text")[0].childNodes[0].nodeValue; 11 | } 12 | document.getElementById('quote').innerHTML = table; 13 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | 2 |