[PHP] temporary error

2008-02-21 Thread Mirco Soderi
Consider the following code: $sqlQueryInserimentoDatiAllenamentoCalciPiazzati = "INSERT INTO ... etc etc " $queryInserimentoDatiAllenamentoCalciPiazzati = mysql_query($sqlQueryInserimentoDatiAllenamentoCalciPiazzati); if($queryInserimentoDatiAllenamentoCalciPiazzati) { // do something } if($

[PHP] Re: temporary error

2008-02-21 Thread Mirco Soderi
autoincrement key, the problem seems to be solved. Do you find any reason for that? ""Mirco Soderi"" <[EMAIL PROTECTED]> ha scritto nel messaggio news:[EMAIL PROTECTED] > Consider the following code: > > $sqlQueryInserimentoDatiAllenamentoCalciPia

Re: [PHP] Re: temporary error

2008-02-22 Thread Mirco Soderi
[snip] Is that irony? [/snip] no -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] SimpleXML strange behaviour.

2008-09-09 Thread Mirco Soderi
Do you know any reason why the following code does work $xmlOperazioni = simplexml_load_file($xmlFilename); foreach($xmlOperazioni->operazione as $operazione) { if($operazione['nome'] == $operazioneRichiesta) { require($operazione['php']); break; } } but the following does not