Bonjour,
<https://lh3.googleusercontent.com/-HjI1kOgHZv4/VXFsJa5QsuI/AAAAAAAAASg/fRNVvWHhx3M/s1600/Capture%2Bd%25E2%2580%2599e%25CC%2581cran%2B2015-06-05%2Ba%25CC%2580%2B10.29.46.png>
est ce que quelqu'un peut m aidé pour stocker un tableau qui contient une
colonne date par mois et des lignes de type d'absence , j'utilise cakephp ,
j'ai réussie de stocker une seul colonne, mais j'arrive pas de stocker tout
le tableau . merci
voila mon code de mon controleur
public function edit($id = null) {
if (!$this->Clas->exists($id)) {
throw new NotFoundException(__('Invalid clas'));
}
if ($this->request->is(array('post', 'put'))) {
if ($this->Clas->saveAll($this->request->data)) {
$_POST['data']['Clas']=
mysql_escape_string(serialize($_POST['data']['Clas']));
var_dump($_POST['data']['Clas']);
$this->Session->setFlash(__('The clas has been saved.'));
return $this->redirect(array('action' => 'index'));
} else {
debug($this->request->data);
$this->Session->setFlash(__('The clas could not be saved. Please, try
again.'));
}
} else {
$options = array('conditions' => array('Clas.' . $this->Clas->primaryKey
=> $id));
$this->request->data = $this->Clas->find('first', $options);
}
}
--
Like Us on FaceBook https://www.facebook.com/CakePHP
Find us on Twitter http://twitter.com/CakePHP
---
You received this message because you are subscribed to the Google Groups
"CakePHP" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/cake-php.
For more options, visit https://groups.google.com/d/optout.