Hey All,
Is there a way to check wether a file exists on a server, and return a boolean?
if(fileExists){ dothis; }
thanks, Dan
nearly 🙂....it's:
if(file_exists("datei.txt")){ echo "datei.txt exists!"; } else { echo "Sorry, couldn't find datei.txt";}