¿cuanta gente a visto el blog?

PHP

 significa hypertext Pre Processor

se encarga de traducir su idioma a HTML para las paginas web y el servidore envia ese codigo HTML en ves del original PHP donde podria hacer una modificacion. 

Es un lenjuague muy parecido a C.

Para la practica se requiere levantar un servidor. 

VAMOS HA HACER ATAQUE DE FUERZA BRUTA

sudo dnf install httpd

sudo dnf install php
sudo dnf install php php-mysqlnd
sudo systemctl start httpd
sudo systemctl enable httpd

sudo vi /var/www/html/ejemplo.php


<?php?>

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Avanzadas</title>
    <link rel="stylesheet" href="estilo.css">
</head>
<body>
<?php
$var = 7;
$doble = 3.2;
$string = "Hola";

// Aquí se añade un <br /> para saltos de línea y el <b> se cierra correctamente.
echo $var . "<br>" . $doble . "<br><b>" . $string . "</b><br>";
?>
</body>
</html>
IR A http://10.10.10.129/ejemplo.php



sudo chown -R apache:apache /var/www/html/mi_pagina_php 
sudo chmod -R 755 /var/www/html/mi_pagina_php
sudo firewall-cmd --zone=public --add-port=80/tcp --permanent
sudo firewall-cmd --reload
http://10.10.10.129/mi_pagina_php/index.php.
sudo systemctl status httpd
sudo systemctl restart httpd
sudo tail -f /var/log/httpd/error_log

No hay comentarios.:

Publicar un comentario