Re: [PHP] dealing with this code $_POST['custom´]

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



> $saving_list = $_POST['custom'] == 'FR' ? 148 : 147;

Hi there, here's a quick translatation of this code that might help
you understand it better:

if ($_POST['custom'] == 'FR'){
  $saving_list = 148;
}
else{
  $saving_list = 147;
}

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux