
13/05/2003, 10:42
|
 | | | Fecha de Ingreso: enero-2002 Ubicación: Catalunya
Mensajes: 6.459
Antigüedad: 23 años, 2 meses Puntos: 17 | |
$a = 1,2,3,4,5,789, <-- Esto es una variable de string.
$a = array(1,2,3,4,5,7,8,9) <-- Esto es un array
Warning: array_sum() [function.array-sum]: The argument should be an array in c:\inetpub\wwwroot\webnew\productos\comprar.html on line 806
Esto te dice que intentas tratar una variable tipo string somo si fuera un array. |