#!/bin/bash
cd "${BASH_SOURCE%/*}" || (echo -e "\aCouldn't find folder! Perhaps you aren't using bash?"; exit)
clear
php -S localhost:8080 || (echo -e "\aCouldn't start server! Perhaps there's already a server running on this port?"; exit)
exit