On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

BrookyTest

6
Posts
4
Topics
A member registered Oct 06, 2019 · View creator page →

Creator of

Recent community posts

"Basically what you should do is host your PHP file on your own web server...."  It is possible. But, "on my own web server" I can host the game itself. But why then do I need ITCH.IO? For monetization only?

(1 edit)

William, grateful for any idea!
Leo.

iIndex.php?data=UserLeonFinishedScene1 

iIndex.php :

<?php
  echo 'I will write UserData to user.log <br />'; 
  $filename = 'user.log';
  $text = "\r\n Date:". date('Y-m-d\=H:i:s') . "Data :" . $_GET["data"];
    //Writing: 
  $file = fopen ($filename, "a");
  fwrite ($file,$text);
  fclose ($file);
  echo "UserData was writed successfull to file [$filename]  !<br/><br/>"; 
?>

In my UNIT game, I use a PHP script to record user results. Does itch.io support the execution of PHP?

(1 edit)

Hi, All!
In my game Unity WebGL, I keep statistics on the sequence of passage of scenes
by the users. I would like to write these statistics to a file.  

Does itch.io allow writing to a file from the game?