Davi Ramos wrote:
> I tought you forgot to initializae the $obligatoryFieldNotPresent variable,
> as PHP create variables when they are initialized, the
> $obligatoryFieldNotPresent variable is created inside the if.
>
> $obligatoryFieldNotPresent = 0;
>
> if (strlen($_POST["titleIN"]) == 0 ) {
> $obligatoryFieldNotPresent = 1;
> }
> elseif (strlen($_POST["first_nameIN"]) == 0 ) {
> $obligatoryFieldNotPresent = 1;
> }
> elseif (strlen($_POST["publisherIN"]) == 0 ) {
> $obligatoryFieldNotPresent = 1;
> }
> elseif (strlen($_POST["copyrightIN"]) == "" ) {
> $obligatoryFieldNotPresent = 1;
> }
> elseif (strlen($_POST["ISBNIN"]) == 0 ) {
> $obligatoryFieldNotPresent = 1;
> }
> elseif (strlen($_POST["languageIN"]) == 0 ) {
> $obligatoryFieldNotPresent = 1;
> }
> elseif (!empty($_POST['categoriesIN'])) {
> $obligatoryFieldNotPresent = 0;
> }
>
>
It's there, I just didn't include it as it is followed by a lot of
stringies:
$obligatoryFieldNotPresent = 0;
if (isset($_REQUEST["AddNewBooksRequest"])) {
$titleIN = $_POST["titleIN"];.....snipetysnip...
--
unheralded genius: "A clean desk is the sign of a dull mind. "
-------------------------------------------------------------
Phil Jourdan --- [email protected]
http://www.ptahhotep.com
http://www.chiccantine.com/andypantry.php
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php