Crear un modal con Boostrap

Crear un modal con Boostrap

Tiempo de lectura: 2 minutos Reading time: 2 minutes To create a modal with Bootstrap and HTML, follow these steps: Include the Bootstrap stylesheet in your HTML file. You can do this by downloading the CSS file from the Bootstrap website or including a link to an online version in your HTML file. <link rel=”stylesheet” href=”https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css”> Add the HTML code … Read more

How to create a symbolic link under htdocs to run our applications from the development environment we want on Windows.

How to create a symbolic link under htdocs to run our applications from the development environment we want on Windows.

Tiempo de lectura: < 1 minuto Reading Time: < 1 minute Good morning, in this post I am going to explain how to create a symbolic link under HTDOCS and be able to run our applications from our development environment, without having to constantly access HTDOCS to run it. The first thing we need to have installed is the XAMPP server ... Read more

How to Install and Use GitBash (Windows) for GITLAB and Other GIT Services

How to Install and Use GitBash (Windows) for GITLAB and Other GIT Services

Tiempo de lectura: 2 minutos Reading time: 2 minutes How to Install and Use GitBash (Windows) for GITLAB and Other GIT Services Photo by Lukas on Pexels What is Git Bash? It is an application for Microsoft Windows environments that offers an emulation layer for a Git command-line experience. Also valid on Linux and MacOS. You can install it on GITBASH. A Git … Read more

Web Accessibility

Web Accessibility

Tiempo de lectura: 2 minutos Reading time: 2 minutes Web accessibility refers to the ability of a website to be used by a wide range of people, including those with physical, cognitive, and learning disabilities. Web accessibility aims to ensure that all users, regardless of their abilities, can access and use the information and features of a website. There are … Read more

SQL ORDER BY Keyword

SQL ORDER BY Keyword

Tiempo de lectura: 2 minutos Reading Time: 2 minutes Good afternoon, friends! Today, I’m going to talk to you about the SQL keyword ORDER BY. Are you ready? Let’s get started. SQL is a programming language used to work with databases. The “ORDER BY” command is used to sort the results of a query in ascending or descending order based … Read more

SQL Operators AND, OR, and NOT

SQL Operators AND, OR, and NOT

Tiempo de lectura: 2 minutos Reading Time: 2 minutes Good afternoon! We continue with tutorials on SQL The SQL operators AND, OR, and NOT are used to combine multiple conditions in a WHERE clause. Each has a specific function and is used in different situations. The SQL AND operator is used to combine two or more conditions in a WHERE … Read more

SQL WHERE Clause

SQL WHERE Clause

Tiempo de lectura: 2 minutos Reading time: 2 minutes Good morning, let’s continue with SQL The SQL WHERE clause is used to filter the results of a database query. It allows you to use various operators and functions to specify filtering conditions. For example, if we want to select all customers from a table who are older than 30 years, … Read more