-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhola.php
More file actions
40 lines (40 loc) · 1.47 KB
/
hola.php
File metadata and controls
40 lines (40 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/hola.css">
<script src="https://kit.fontawesome.com/cab57163e1.js" crossorigin="anonymous"></script>
<title>Document</title>
</head>
<body class="body">
<header class="header">Prueba técnica - Desarrollador Python</header>
<main class="main">
<h1 class="hola" id="hola">
<?php
if (!$_GET) {
$hola = "ingresar dato url, ejemplo: hola.php?nombre=Test";
}else {
$hola = $_GET['nombre'];
}
$hola_py = exec("python3 hola.py $hola");
echo $hola_py;
?>
</h1>
</main>
<footer class="footer-distributed">
<div class="footer-right">
<a href="https://linkedin.com/in/gfigueredo"><i class="fa fa-linkedin"></i></a>
<a href="https://github.com/FigueredoGaston"><i class="fa fa-github"></i></a>
</div>
<div class="footer-left">
<p class="footer-links">
<a class="link-1" href="hola.php?nombre=Figueredo%20Gast%f3n">Developed by Figueredo Gastón</a>
</p>
<p>26-12-2021</p>
</div>
</footer>
<script src="js/hola.js"></script>
</body>
</html>