Skip to content

Instantly share code, notes, and snippets.

View celestecastillo0's full-sized avatar

celestecastillo0

View GitHub Profile
@celestecastillo0
celestecastillo0 / index.php
Last active October 25, 2021 03:28
DeWeb act4 UII for
<?php
for ($date = strtotime("2021-09-08"); $date < strtotime("2021-10-08"); $date = strtotime("+1 day", $date)) {
echo date("Y-m-d", $date)."<br />";
}
echo "<br> Celeste Castillo Flores";
?>
@celestecastillo0
celestecastillo0 / index.php
Created October 24, 2021 05:39
DeWeb act4 UII do while
<?php
echo 'Hecho con do while <br/>';
$i = 1;
do {
echo $i . "<br/>";
$i++;
} while($i < 10);
echo "<br> Celeste Castillo Flores";
?>
@celestecastillo0
celestecastillo0 / index.php
Last active October 23, 2021 09:34
DeWeb act3 UII switch case
<?php
$variable=2;
switch($variable) {
case 1:
echo '$variable es igual a 1.';
@celestecastillo0
celestecastillo0 / index.php
Last active October 23, 2021 08:15
DeWeb act3 UII
<?php
$galletas = true;
if($galletas == true) {
echo 'Hay galletas';
} else {
@celestecastillo0
celestecastillo0 / index.php
Last active October 22, 2021 19:51
DeWeb act2 UII
<!DOCTYPE html>
<html>
<body>
<?php
echo "Mi primera vez!";
print ("Mi primera vez!<br>");
$num1 = 7;
$num2 = 20;
$num3 = 3;