This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Findtheprecious</title> | |
</head> | |
<body> |
This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<link rel="stylesheet" type="text/css" href="http://fr.allfont.net/allfont.css?fonts=ringbearer-medium" /> | |
<meta charset="UTF-8" /> | |
<link rel="stylesheet" href="lemagicien.css" /> | |
<title>FindThePrecious.com</title> | |
</head> |
This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<link rel="stylesheet" type="text/css" href="http://fr.allfont.net/allfont.css?fonts=ringbearer-medium" /> | |
<meta charset="UTF-8" /> | |
<link rel="stylesheet" href="lemagicien.css" /> | |
<title>FindThePrecious.com</title> | |
</head> |
This file contains 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
<!Doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8" > | |
<title>La tour de ma choupinette Sauron</title> | |
<link rel="stylesheet" href="css/bootstrap.css"> | |
<link rel="stylesheet" href="css/style.css"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
</head> | |
<body> |
This file contains 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
1 pwd | |
2 list | |
3 cd ls | |
4 cd -ls | |
5 ls -l | |
6 cd clymystery-master | |
7 cd clmystery-master | |
8 ls -l | |
9 cd .. | |
10 pwd |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
</head> | |
<body> | |
<?php | |
$namemovie = 'Indiana Jones and the Last Crusade'; | |
echo "The name of this famous movie is $namemovie"; |
This file contains 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 | |
$message = "0@sn9sirppa@#?ia'jgtvryko1"; | |
$message2 = substr($message, 5, 13); | |
$message3 = str_replace('@#?', ' ', $message2); | |
$message4 = strrev($message3); |
This file contains 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 | |
//first Solution | |
$movieindy = array("Les Aventuriers de l'Arche Perdu" => 'Harrison Ford , Paul Freeman , Karen Allen' , "Indiana Jones et le Temple Maudit" => 'Harrison Ford , Kate Capshaw , Jonathan Ke Quan' , "Indiana Jones et la Diernières Croisade" => 'Harrison Ford , Sean Connery, Denholm Elliott'); | |
foreach($movieindy as $key => $value) { | |
echo "Dans $key les acteurs principaux sont: $value. <br>"; | |
} | |
echo"<br>"; | |
//Or Second Solution |
This file contains 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 | |
if ($_POST) | |
{ | |
$errors = array(); | |
//Part Lastname | |
if(empty($_POST["lastname"])) { | |
$errors['lastname'] = "lastname is required"; | |
} |
This file contains 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 | |
$weapons = ['fists', 'whip', 'gun']; | |
$opponentWeapon = $weapons[rand(0,2)]; | |
if ($opponentWeapon === 'gun') { | |
$indyWeapon = 'whip'; | |
} | |
elseif ($opponentWeapon === 'whip') { | |
$indyWeapon = 'fists'; |
OlderNewer