On 03/03/15 12:22, Release Edl wrote: > I just ad (as Aziz) suggests: > > <?php > error_reporting(-1); > ini_set('display_errors', 'on'); > ?> > > And now I think we're going to a solution, as page shows: > > PHP Notice: Undefined variable: id in > D:\web\localuser\guizzardibelavista\www\vertudo.php on line 24 PHP > Notice: Use of undefined constant php - assumed 'php' in > D:\web\localuser\guizzardibelavista\www\vertudo.php on line 36 PHP > Notice: Undefined variable: id in > D:\web\localuser\guizzardibelavista\www\vertudo.php on line 54 PHP > Notice: Undefined variable: id in > D:\web\localuser\guizzardibelavista\www\vertudo.php on line 116 The problem is that those are only notices which should be able to be switched of without breaking the flow. I think I would have expected an 'error' ... $dados[id] should be $dados['id'] and the same with the other elements of $dados[] but I'm not sure these tie up with the above warnings. -- Lester Caine - G8HFL ----------------------------- Contact - http://lsces.co.uk/wiki/?page=contact L.S.Caine Electronic Services - http://lsces.co.uk EnquirySolve - http://enquirysolve.com/ Model Engineers Digital Workshop - http://medw.co.uk Rainbow Digital Media - http://rainbowdigitalmedia.co.uk -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php