commit e70121df58592b542a96bc928e9b76686726be23 Author: Azerothwav Date: Mon Jan 20 10:22:08 2025 +0100 feat: init commit diff --git a/.php-cs-fixer.cache b/.php-cs-fixer.cache new file mode 100644 index 0000000..f966006 --- /dev/null +++ b/.php-cs-fixer.cache @@ -0,0 +1 @@ +{"php":"8.2.26","version":"3.67.1","indent":" ","lineEnding":"\n","rules":{"binary_operator_spaces":{"default":"at_least_single_space"},"blank_line_after_opening_tag":true,"blank_line_between_import_groups":true,"blank_lines_before_namespace":true,"braces_position":{"allow_single_line_empty_anonymous_classes":true},"class_definition":{"inline_constructor_arguments":false,"space_before_parenthesis":true},"compact_nullable_type_declaration":true,"declare_equal_normalize":true,"lowercase_cast":true,"lowercase_static_reference":true,"new_with_parentheses":true,"no_blank_lines_after_class_opening":true,"no_extra_blank_lines":{"tokens":["use"]},"no_leading_import_slash":true,"no_whitespace_in_blank_line":true,"ordered_class_elements":{"order":["use_trait"]},"ordered_imports":{"imports_order":["class","function","const"],"sort_algorithm":"none"},"return_type_declaration":true,"short_scalar_cast":true,"single_import_per_statement":{"group_to_single_imports":false},"single_space_around_construct":{"constructs_followed_by_a_single_space":["abstract","as","case","catch","class","const_import","do","else","elseif","final","finally","for","foreach","function","function_import","if","insteadof","interface","namespace","new","private","protected","public","static","switch","trait","try","use","use_lambda","while"],"constructs_preceded_by_a_single_space":["as","else","elseif","use_lambda"]},"single_trait_insert_per_statement":true,"ternary_operator_spaces":true,"unary_operator_spaces":{"only_dec_inc":true},"visibility_required":true,"blank_line_after_namespace":true,"constant_case":true,"control_structure_braces":true,"control_structure_continuation_position":true,"elseif":true,"function_declaration":true,"indentation_type":true,"line_ending":true,"lowercase_keywords":true,"method_argument_space":{"attribute_placement":"ignore","on_multiline":"ensure_fully_multiline"},"no_break_comment":true,"no_closing_tag":true,"no_multiple_statements_per_line":true,"no_space_around_double_colon":true,"no_spaces_after_function_name":true,"no_trailing_whitespace":true,"no_trailing_whitespace_in_comment":true,"single_blank_line_at_eof":true,"single_class_element_per_statement":{"elements":["property"]},"single_line_after_imports":true,"spaces_inside_parentheses":true,"statement_indentation":true,"switch_case_semicolon_to_colon":true,"switch_case_space":true,"encoding":true,"full_opening_tag":true},"hashes":{".conform.8314470.pariteOption.php":"59ae6e3640af9e181fc1ff3f4e341e64",".conform.9957376.parite.php":"708e254788a8f54e4e124cc669537cf2",".conform.4510828.parite.php":"c44bb3cd83a8e4176fb7406d3d1ed120",".conform.1287215.parite.php":"49cd72b5fc42ac1a9d6b7f2166b13b9b",".conform.3263875.parite.php":"307b869a3e05c08ef8530fff655ef378",".conform.8517100.parite.php":"4aa0abc9af942a55d00a3c6212b40dfb",".conform.4333275.parite.php":"882e7cc12c9ce794b7c3364954663428",".conform.6052141.parite.php":"372ad54f3c4e08f77738460f29ed6d0c"}} \ No newline at end of file diff --git a/parite.php b/parite.php new file mode 100755 index 0000000..f258b2b --- /dev/null +++ b/parite.php @@ -0,0 +1,53 @@ + 0) { + $exchangeRate = getExchangeRate($fromCurrency, $toCurrency); + if ($exchangeRate !== null) { + $result = $amount * $exchangeRate; + } else { + $result = "Impossible de récupérer le taux de conversion."; + } + } else { + $result = "Veuillez remplir tous les champs correctement."; + } +} +?> + +

Convertisseur de devises

+
+ + + + + + + + + + +
+ + +

Résultat :

+

+ +

+ diff --git a/pariteOption.php b/pariteOption.php new file mode 100755 index 0000000..b2e7992 --- /dev/null +++ b/pariteOption.php @@ -0,0 +1 @@ + diff --git a/ville.php b/ville.php new file mode 100755 index 0000000..6f0881a --- /dev/null +++ b/ville.php @@ -0,0 +1,63 @@ + + 0) { + $cities = array_column($data, 'nomCommune'); // Récupérer tous les noms de communes + return $cities; // Retourne un tableau des noms de communes + } + } + return []; // Retourne un tableau vide en cas d'erreur +} + +$result = null; +if ($_SERVER['REQUEST_METHOD'] === 'POST') { + $postalCode = $_POST['postal_code'] ?? ''; + + if ($postalCode !== '') { + $cities = getCitiesFromPostalCode($postalCode); + if (!empty($cities)) { + $result = $cities; // Stocker toutes les villes retournées + } else { + $result = "Impossible de récupérer les villes associées."; + } + } else { + $result = "Veuillez remplir tous les champs correctement."; + } +} +?> + + + + + + + Convertisseur de code postal + + +

Convertisseur de code postal

+
+ + + +
+ + +

Résultat :

+ +

Les communes correspondant au code postal sont :

+ + +

+ + + +