Mostra la pàginaRevisions anteriorsQuè hi enllaçaExporta a PDFTorna dalt Aquesta pàgina és només de lectura. Podeu veure'n el codi font, però no podeu canviar-la. Consulteu el vostre administrador si penseu que això és degut a algun error. = ejemplos == contador de descargas descarga un fichero y mantiene un contador (TXT) de las mismas <sxh php; title:index.php> <?php $filename = "contador.txt"; $file = fopen($filename,"r"); //$texto = fread($file,filesize($filename)); $texto = fread($file,10); fclose($file); $file = fopen($filename,"w"); $texto = intval($texto) + 1; fwrite($file,$texto); fclose($file); header("Content-disposition: attachment; filename=4tESO-ACTUACIO=COMPLERTA.mp4"); header("Content-type: video/mp4"); readfile("4tESO-ACTUACIO=COMPLERTA.mp4"); ?> </sxh> <sxh php; title:contador.php> <?php $filename = "contador.txt"; $file = fopen($filename,"r"); //$texto = fread($file,filesize($filename)); $texto = fread($file,10); fclose($file); $file = fopen($filename,"w"); $texto = intval($texto) + 1; fwrite($file,$texto); fclose($file); ?> </sxh> development/php/ejemplos/start.txt Darrera modificació: 15/08/2018 02:19per mate