Basjee schreef:
Volgens mij met if empty, dankje, niet aangedacht, ik post wel als er problemen zijn
Heb net ff op php.net rondgekeken en naar de isset functie gezocht, en heb deze beschrijving gevonden:
isset
(PHP 4, PHP 5)
isset — Determine whether a variable is set
Description
bool isset ( mixed $var [, mixed $var [, $...]] )
Returns TRUE if var exists; FALSE otherwise.
If a variable has been unset with unset(), it will no longer be set. isset() will return FALSE if testing a variable that has been set to NULL. Also note that a NULL byte ("\0" is not equivalent to the PHP NULL constant.
Warning: isset() only works with variables as passing anything else will result in a parse error. For checking if constants are set use the defined() function.
Ik denk dat je dus het beste isset kan gebruiken maar if(empty()) kan ook nog wel eens gaan werken want die doet in dit geval bijna hetzelfde....
[Laatst bewerkt door Hunterseaker op zondag 25 maart 2007, om 17:35]