<?php
$contador = 0;

function iniciarContador() {
    global $contador;
    $contador = 0;
}

function incrementar(){
    global $contador;
    $contador++;
}

function mostrarContador () {
		global $contador;
    echo "Contador: $contador\n";
}

iniciarContador();
incrementar();
incrementar();
mostrarContador();
?>

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: