PHP Script for Dynamic PDF Generation of Order Details

Database Connection and Query

This script generates a PDF report of orders by connecting to a MySQL database and fetching data. It uses the FPDF library for PDF creation.

First, it establishes a connection to the MySQL database:

require('AyudaPDF/fpdf/fpdf.php');

$dbc = mysqli_connect('localhost', 'root', 'root', 'birt') or die('Could not connect to the database: ' . mysqli_connect_error());

Then, it defines an SQL query to retrieve order details:

$sentencia = "SELECT orderNumber, orderDate, requiredDate,

Read More

Understanding Maps: Types, Elements, and Scales

Understanding Maps

A map is a graphic and metric representation of a piece of land, usually on a two-dimensional surface, but can also be spherical, as in globes. The metric property of a map means that it must be possible to take measurements of distances, angles, or surfaces and obtain an approximately accurate result.

Current Map Types

  • Map to lost margin
    • Administrativopp Map
  • Analíticop Map
  • Anamorphic Map
  • Auxiliary Map
  • Adjacent auxiliary Map
    • Bathymetric map
    • Base map
    • Base map
    • Cadastral map
    • Key Map:
    • Continental
Read More

Finite Element Analysis: Concepts and Applications

Iso-parametric, Sub-parametric, and Super-parametric Elements

Iso-parametric Elements

In iso-parametric elements, the geometry and field variables (such as displacement and temperature) are interpolated using the same shape functions. The number of nodes used for defining the geometry is the same as that used for interpolating the field variables.

Example: A 4-node quadrilateral element where both geometry and field variables are interpolated with the same bilinear shape functions.

Sub-parametric Elements

In

Read More

Composite Materials: Properties, Types, and Applications

1. Introduction

In engineering, there are applications that require a combination of unusual properties that a single material cannot offer (e.g., high tensile strength, corrosion resistance, etc.). A family of materials called composites has been developed, where two or more different materials are combined to improve material performance under the principle of combined action.

Other chapters have already covered some composite materials:

  • Metal Alloys (Perlite)
  • Multiphase Polymers, Copolymers
  • Ceramics
Read More

Building Technical Regulations and Construction Systems

Technical Regulations T2

Introduction

Object:

  1. The CTE regulates the basic quality requirements that buildings must satisfy to meet safety and habitability requirements.
  2. The CTE requires basic requirements of structural safety, fire safety, safety of use, hygiene, health and environmental protection, noise protection, and energy saving and thermal insulation.
  3. The basic requirements for building functionality are governed by specific regulations.
  4. The basic requirements must be met in the design, construction,
Read More

DA321 Multimodal Data Analysis & Learning Exam Solutions

DA321: Multimodal Data Analysis and Learning-I Exam Solutions

Question 1: Image Intensity Histogram and Convolution (4 Points)

Approach:

  1. Constructing the Histogram:

    • Create an 8 × 8 matrix with alternating black (0) and white (255) pixels.
    • Count the frequency of pixel values (0 and 255) to plot the histogram.
    • Resulting histogram:
      • 32 pixels with intensity 0.
      • 32 pixels with intensity 255.
  2. Applying the 2 × 2 Smoothing Kernel:

    • Kernel: 1/4.
    • Apply convolution by moving the kernel over the image, assuming mirrored
Read More