Hi,
how can i make a dir after user is save, with the actual user ID?
This is my code:
if ($user->save()) {
mkdir("../clients/". $this->request->getPost('id', 'int') . "/", 0777);
return $this->dispatcher->forward(array(
'controller' => 'index',
'action' => 'index'
));
}
Thx again :-)