Ver Mensaje Individual
  #9 (permalink)  
Antiguo 24/10/2010, 12:36
odysx
 
Fecha de Ingreso: octubre-2010
Mensajes: 72
Antigüedad: 14 años, 1 mes
Puntos: 1
Respuesta: Contador simple

Cita:
Iniciado por mortiprogramador Ver Mensaje
bueno, propongo algo así

Código PHP:
Ver original
  1. <?php
  2. $clicks = 1;
  3. ?>
  4.  
  5. <html>
  6. <script>
  7. function test(){
  8. document.getElementById('clics').value = parseInt(document.getElementById('clics').value) + 1;
  9. }
  10. </script>
  11. <body>
  12. <img src='[COLOR="Red"]http://[/COLOR]imagen.ext' onclick='test()'>
  13. <input type='text' name='clics' id='clics' value='<?php echo $clicks;?>'>
  14. </body>
  15. </html>

prueba y comenta
saludos
La imagen debe empezar por http? es que lo mio es una imagen subida a mi servidor...no lleva a ningun enlace.