> $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

