Ejemplo n.º 1
0
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Store</title>
</head>
<body>
<?php 
include_once "../../../" . "vendor/autoload.php";
use src\bitm\SEIP107992\city\city;
$city = new city();
echo $city->store();
?>
</body>
</html>
Ejemplo n.º 2
0
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Delete</title>
</head>
<body>
<?php 
include_once "../../../" . "vendor/autoload.php";
use src\bitm\SEIP107992\city\city;
$city = new city();
echo $city->delete();
?>
</body>
</html>
Ejemplo n.º 3
0
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Create</title>
</head>
<body>
<?php 
include_once "../../../" . "vendor/autoload.php";
use src\bitm\SEIP107992\city\city;
$city = new city();
echo $city->create();
?>
</body>
</html>
Ejemplo n.º 4
0
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Index</title>
</head>
<body>
<?php 
include_once "../../../" . "vendor/autoload.php";
use src\bitm\SEIP107992\city\city;
$city = new city();
echo $city->index();
?>
</body>
</html>
Ejemplo n.º 5
0
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Update</title>
</head>
<body>
<?php 
include_once "../../../" . "vendor/autoload.php";
use src\bitm\SEIP107992\city\city;
$city = new city();
echo $city->update();
?>
</body>
</html>
Ejemplo n.º 6
0
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Edit</title>
</head>
<body>
<?php 
include_once "../../../" . "vendor/autoload.php";
use src\bitm\SEIP107992\city\city;
$city = new city();
echo $city->edit();
?>
</body>
</html>