I have my aplication in intranet (server) and 5 users (terminals). I want to create a txt file in every terminal as needed. How I do that ?
I am not getting you, you probably want to place txt file for each user <?php $f = fopen($_SERVER['REMOTE_ADDR'].".txt", "w+"); fclose($f); PHP: this code makes txt file with user IP everytime he access site, but don't worry, it just replaces that file
Oh, ok. I didn't know that. And if every user want to print this txt file in his terminal printer ? How I do that ? thanks.