-
-
Save parzibyte/338f587f1d625505149e1c1fc6a5ed62 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if (!isset($_GET["id"])) { | |
exit("No hay id"); | |
} | |
$id = $_GET["id"]; | |
$datos = [ | |
"id" => $id, | |
"productos" => [ | |
[ | |
"nombre" => "Alcohol isopropílico", | |
"precio" => 20, | |
], | |
[ | |
"nombre" => "Mouse razer", | |
"precio" => 500, | |
], | |
], | |
"fecha" => date("Y-m-d"), | |
]; | |
echo json_encode($datos); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment