Ver Mensaje Individual
  #4 (permalink)  
Antiguo 18/01/2010, 18:45
pilucho
 
Fecha de Ingreso: noviembre-2004
Ubicación: NULL
Mensajes: 655
Antigüedad: 20 años, 1 mes
Puntos: 6
Respuesta: Contador visitas

tabla visitas
CREATE TABLE contadorvisitas (
opciones varchar(20) NOT NULL default '',
puntajes int (11) NOT NULL default '0',
PRIMARY KEY (opciones)
);

Código PHP:
Agrega a tu tabla de videos el campo puntajes.
Ejemplo:
tabla videos
CREATE TABLE videos 

      
id int  (11NOT NULL auto_increment,
      
titulo vachar (20)  NOT NULL default ''
      
puntajes int(11) default NULL,
      
etc....
      
PRIMARY KEY  (id
); 

lo unico que hace este contador es mostrar los resultados vistosusando solo un update