Mi intencion es contar los clicks que se realizan sobre un banner en flash. Navegando ncontre un codigo muy sencillo en php que escribe sobre un txt, y el action correspondiente en flash pero no logro que funcione.
ACTION SCRIPT: (Flash 8)
Código :
var txt = new LoadVars(); banner.onRelease = function(){ txt.load("contador.txt"); txt.onLoad = function() { this.new_clics = ++this.clics; this.send("edit_contador.php", this, "POST"); };
PHP: edit_contador.php
Código :
<?php $name = "contador.txt"; $file = fopen($name,"w"); $txt = "clics=".stripslashes($HTTP_POST_VARS["new_clics"]); fputs($file, $txt); fclose($file); ?>
TXT: contador.txt
Código :
clics=0
Espero alguna respuesta, muchas gracias!