feat: init commit
This commit is contained in:
commit
e70121df58
1
.php-cs-fixer.cache
Normal file
1
.php-cs-fixer.cache
Normal file
@ -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"}}
|
53
parite.php
Executable file
53
parite.php
Executable file
@ -0,0 +1,53 @@
|
||||
<?php
|
||||
function getExchangeRate($fromCurrency, $toCurrency)
|
||||
{
|
||||
$url = "http://currencies.apps.grandtrunk.net/getlatest/{$fromCurrency}/{$toCurrency}";
|
||||
$rate = file_get_contents($url);
|
||||
return $rate !== false ? floatval($rate) : null;
|
||||
}
|
||||
|
||||
$result = null;
|
||||
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
|
||||
$fromCurrency = $_POST['from_currency'] ?? '';
|
||||
$toCurrency = $_POST['to_currency'] ?? '';
|
||||
$amount = floatval($_POST['amount'] ?? 0);
|
||||
|
||||
if ($fromCurrency && $toCurrency && $amount > 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.";
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
||||
<h1>Convertisseur de devises</h1>
|
||||
<form method="POST">
|
||||
<label for="from_currency">De :</label>
|
||||
<select id="from_currency" name="from_currency" required>
|
||||
<?php include("pariteOption.php"); ?>
|
||||
</select>
|
||||
|
||||
<label for="to_currency">À :</label>
|
||||
<select id="to_currency" name="to_currency" required>
|
||||
<?php include("pariteOption.php"); ?>
|
||||
</select>
|
||||
|
||||
<label for="amount">Montant :</label>
|
||||
<input type="number" id="amount" name="amount" step="0.01" value="<?= ($_POST['amount'] ?? '') ?>" required>
|
||||
|
||||
<button type="submit">Convertir</button>
|
||||
</form>
|
||||
|
||||
<?php if ($result !== null): ?>
|
||||
<h2>Résultat :</h2>
|
||||
<p>
|
||||
<?= is_numeric($result)
|
||||
? "Le montant converti est de : " . number_format($result, 2)
|
||||
: htmlspecialchars($result) ?>
|
||||
</p>
|
||||
<?php endif; ?>
|
1
pariteOption.php
Executable file
1
pariteOption.php
Executable file
File diff suppressed because one or more lines are too long
63
ville.php
Executable file
63
ville.php
Executable file
@ -0,0 +1,63 @@
|
||||
|
||||
<?php
|
||||
function getCitiesFromPostalCode($postalCode) {
|
||||
$url = "https://apicarto.ign.fr/api/codes-postaux/communes/{$postalCode}";
|
||||
$response = file_get_contents($url);
|
||||
|
||||
if ($response !== false) {
|
||||
$data = json_decode($response, true); // Décoder la réponse JSON
|
||||
if (is_array($data) && count($data) > 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.";
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Convertisseur de code postal</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Convertisseur de code postal</h1>
|
||||
<form method="POST">
|
||||
<label for="postal_code">Code postal :</label>
|
||||
<input type="text" id="postal_code" name="postal_code" required>
|
||||
<button type="submit">Convertir</button>
|
||||
</form>
|
||||
|
||||
<?php if ($result !== null): ?>
|
||||
<h2>Résultat :</h2>
|
||||
<?php if (is_array($result)): ?>
|
||||
<p>Les communes correspondant au code postal sont :</p>
|
||||
<ul>
|
||||
<?php foreach ($result as $city): ?>
|
||||
<li><?= htmlspecialchars($city, ENT_QUOTES, 'UTF-8') ?></li>
|
||||
<?php endforeach; ?>
|
||||
</ul>
|
||||
<?php else: ?>
|
||||
<p><?= htmlspecialchars($result, ENT_QUOTES, 'UTF-8') ?></p>
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
</body>
|
||||
</html>
|
Loading…
x
Reference in New Issue
Block a user