Re: Errors in php 5.0.4 Not in 4.3.10-16
- From: Kirsten <K.Schulte@xxxxxxxxxxxxxxxxxxxxxx>
- Date: Thu, 29 Sep 2005 13:18:54 +0200
Han Koster schrieb:
I use the following statements:
$var = ""; $var = $_POST('varname');
In php 4, when 'varname' was not defined, $var remained an empty string; In php 5, I suddenly get errors.
I solved these by including the function array_key_exist to check the occurence of 'varname'
Is this the prefered way or is ther a better solution?
Thanx,
Han koster
Did you get an error or a notice? It is neccessary in PHP 5 to declare variables before use them.
-Kirsten .
- Follow-Ups:
- Re: Errors in php 5.0.4 Not in 4.3.10-16
- From: Obvious
- Re: Errors in php 5.0.4 Not in 4.3.10-16
- Prev by Date: Re: php trivia: =>
- Next by Date: Re: SQL beginner question - JOIN / relational database.
- Previous by thread: SQL beginner question - JOIN / relational database.
- Next by thread: Re: Errors in php 5.0.4 Not in 4.3.10-16
- Index(es):
Relevant Pages
|