We have moved our forum to GitHub Discussions. For questions about Phalcon v3/v4/v5 you can visit here and for Phalcon v6 here.

SAVE INSIDE A FOR OR WHILE

im trying to create a save inside a for but the variable $i is not incremented


$i=0;
$many=8;
for($i<$many)
{
    $people=new People();
    $people->number=$i;
    $people->save();
    $i=$i+1;
}


98.9k
Accepted
answer

Save is a method:

$people->save();


4.5k
edited May '14

is not that i do it like that just that i forgot to typed on my question

sorry for my bad english



98.9k

OK THANKS FOR FIXING IT



4.5k
edited May '14

the thing is that im trying to save for example 8 times $i but just doit once that's it and i dont understand why

please help me

si sabes español porfavor ayudeme y me explica en español

el problema es que estoy intentando guardar la variable $i 8 veces como en el ejemplo pero solo lo hace una vez y se sale del for o while

con ninguno me funciona



98.9k

Could you please post the table structure?



4.5k

the model?



98.9k

the sql, show create table ¨name¨



4.5k
CREATE TABLE IF NOT EXISTS `people` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `nombre` varchar(30) NOT NULL,
  `apellido` varchar(30) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;


4.5k

yo envio mediante ajax varios valores y los necesito guardar por medio de un while o for y no lo hace



98.9k

Your table has two fields called "nombre" and "apellidos" (not null is allowed), but you're assigning only "number" which is not declared on the table.

Tu tabla tiene los campos "nombre" y "apellidos" (que son obligatorios) y solo estas asignando "number" que no existe en la tabla.



4.5k

lo que propuse anteriormente era un ejemplo, no con campos reales, seria tan amable de facilitarme un codigo de ejemplo para guardar informacion en una tabla dentro de un ciclo repetitivo?



98.9k

Intenta esto:

    public function testAction()
    {
        $i = 0;
        $many = 8;
        while ($i < $many) { // es 'while' no 'for' 
            $people = new People();
            $people->nombre = $i; //asignar cada campo con un valor
            $people->apellido = $i; //asignar cada campo con un valor
            if (!$people->save()) { // esto muestra si hay mensajes de validacion
                foreach ($people->getMessages() as $message) {
                    echo $message;
                }
            }
            $i++; //asi se incrementa en php
        }
    }

La tabla:

CREATE TABLE `people` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `nombre` varchar(30) NOT NULL,
  `apellido` varchar(30) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1

El modelo:

<?php

class People extends Phalcon\Mvc\Model
{

}


4.5k

Muchas gracias amigo, de verdad me sirvio mucho y espero seguir contando con su apoyo. Seguiremos apoyandonos entre usuarios para resolver dudas y seguir aportando en el desarrollo y crecimiento de este framework.