This file contains hidden or 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
-- phpMyAdmin SQL Dump | |
-- version 5.2.0 | |
-- https://www.phpmyadmin.net/ | |
-- | |
-- Servidor: localhost | |
-- Tiempo de generación: 22-12-2022 a las 16:43:21 | |
-- Versión del servidor: 8.0.30 | |
-- Versión de PHP: 8.1.10 | |
SET FOREIGN_KEY_CHECKS=0; |
This file contains hidden or 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 | |
$array = [ | |
'card_list' => [ | |
0 => [ | |
'name' => 'Effect Veiler', | |
'details' => ['some text', 'some text'], | |
'set' => [ | |
'ETCO-EN100' => [ | |
'release' => '2020-01-19', |
This file contains hidden or 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
new method |
This file contains hidden or 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 | |
class DataBaseManager | |
{ | |
public function GetData($query, $user, $pass) | |
{ | |
try { | |
$db_result = []; | |
$conn = new PDO("mysql:host=localhost;dbname=test", $user, $pass); | |
$conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); |
This file contains hidden or 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
Hello friends; if you got here you already know a little about what this is about, I am trying to create a roadmap to develop my own framework with your ideas and opinions, since I believe that there is no absolute truth. | |
Objective: create a framework from scratch; with a graphical environment for its setup/configuration; with CMS capabilities to establish the different areas of development: Maintenance, Processes, Reports. | |
What I want to avoid: dependencies on external libraries. | |
What I need from you: your opinions, to know what you consider to be good and bad in the other frameworks, what things would change, but first I need to know in what order it should be developed. | |
What to know and do, before and during the development of a php framework (The Roadmap)? |
This file contains hidden or 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
```C# | |
namespace CreateImageClass | |
{ | |
public sealed class ImageControlOnFly | |
{ | |
public Main MainForm; | |
public Bitmap Bmp = new Bitmap(1, 1); |
This file contains hidden or 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
FROM php:7.4-apache | |
# RUN docker-php-ext-install opcache && docker-php-ext-enable opcache | |
RUN a2enmod rewrite | |
RUN apt-get update && apt-get upgrade -y | |
# install dependencies | |
RUN apt-get install -y --no-install-recommends \ | |
build-essential \ |
This file contains hidden or 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
Characters | |
Explorer | |
Warrior | |
Barbarian | |
Fury | |
Mercenary | |
gentleman | |
Templar | |
Killer |
This file contains hidden or 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
{% extends 'base.html.twig' %} | |
{% block title %}Sistema de Gestion de Socorristas{% endblock %} | |
{% block body %} | |
<link href="https://cdn.jsdelivr.net/npm/simple-datatables@latest/dist/style.css" rel="stylesheet"/> | |
<link href="/assets/css/styles.css" rel="stylesheet"/> | |
<script> | |
var body = document.body; | |
body.classList.add("sb-nav-fixed"); |
This file contains hidden or 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 | |
namespace App\Controller; | |
use App\Entity\User; | |
use App\Form\AccountActivationType; | |
use Doctrine\Persistence\ManagerRegistry; | |
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; | |
use Symfony\Component\HttpFoundation\Request; | |
use Symfony\Component\HttpFoundation\Response; |