View practico final
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
Tabla practico final ipv6 | |
direccion ISP 2015:abc:bebe::/48 | |
XAS-CENTRAL-SV | |
2015:abc:bebe:1::1/64 serial0/0/0 // salida panama | |
2015:abc:bebe:2::1/64 serial0/0/1 // salida guatemala | |
2015:abc:bebe:3::1/64 serial0/2/0 // salida honduras | |
2015:abc:bebe:4::1/64 serial0/2/1 // salida nicaragua |
View xas-market.php
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 | |
require_once 'vendor/autoload.php'; | |
$app = new \Slim\Slim(); | |
$db = new mysqli("localhost", "name_of_user", "name_of_passwd", "name_of_db"); | |
$app->get("/producto", function() use($db, $app) { | |
// sleep(3); |
View contacto.component.html
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
<div class="col-md-8"> | |
<div class="card " [@carduserprofile]> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-md-8"> | |
<h2 class="m-b-2">contacto</h2> | |
View productos.component.html
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
<ul class="cd-gallery"> | |
<li *ngFor="let tienda of tiendas" class="restaurante-item"> | |
<a href=""> | |
<ul class="cd-item-wrapper"> | |
<li class="selected"> | |
<img src="http://localhost/slim/uploads/alphanet_png-01.png" alt="Preview image" *ngIf="tienda.imagen && tienda.imagen !== 'null'" > | |
</li> | |
<li class="move-right" data-sale="true" data-price="$22"> | |
</li> |
View app.routing.ts
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
import { ModuleWithProviders } from '@angular/core'; | |
import { Routes, RouterModule } from '@angular/router'; | |
import {ProductosComponent } from './productos.component'; | |
import { HomeComponent } from './home/home.component'; | |
import { EmpresaComponent} from './empresa/empresa.component'; | |
import { NoticesComponent } from './notices/notices.component'; | |
import { ContactoComponent } from './contacto/contacto.component'; | |
import { NotificationsComponent } from './notifications/notifications.component'; | |
import { RegistrosComponent } from './registros/registros.component'; |
View contacto.component.html
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
<div class="texto-encabezado text-xs-center"> | |
<div class="container"> | |
<h1 class="display-4 wow bounceIn">{{title}}</h1> | |
<p class="wow bounceIn" data-wow-delay=".3s">{{subtitle}}</p> | |
</div> | |
</div> | |
View contacto.component.html
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
<div class="texto-encabezado text-xs-center"> | |
<div class="container"> | |
<h1 class="display-4 wow bounceIn">{{title}}</h1> | |
<p class="wow bounceIn" data-wow-delay=".3s">{{subtitle}}</p> | |
</div> | |
</div> | |
View clietes.php
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 | |
use \Psr\Http\Message\ServerRequestInterface as Request; | |
use \Psr\Http\Message\ResponseInterface as Response; | |
$app = new \Slim\App; | |
//Obtener todos los clientes |
View legacy.php
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 | |
$app->get('/producto', function(Request $request, Response $response){ | |
$consulta = "SELECT * FROM productos ORDER BY id_producto DESC;"; | |
try{ | |
$db = new db(); | |
$db = $db->conectar(); | |
$query = $db->query($consulta);\ |
View styles.css
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
@keyframes spin { | |
from { | |
transform: rotate(0deg); | |
} | |
to { | |
transform: rotate(360deg); | |
} | |
} | |
@-webkit-keyframes spin { |
OlderNewer