This file contains hidden or 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 | |
$name = $_POST['nom']; | |
$subject = $_POST['sujet']; | |
$email = $_POST['email']; | |
$text = $_POST['text']; | |
$dest = "[email protected]"; | |
$data = array( | |
'dest' => $dest, |
This file contains hidden or 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> | |
<title>Challenge</title> | |
</head> | |
<body> | |
<form action="action.php" method="POST"> | |
<p> |
This file contains hidden or 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
const express = require('express'); | |
const app = express(); | |
app.use(express.json()); | |
app.use(express.urlencoded({extended: true})) | |
const bikes = [ | |
{id: 1, color: 'blue'}, | |
{id: 2, color: 'red'} | |
]; |
This file contains hidden or 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
<template> | |
<div class="container"> | |
<div> | |
<h2>Installation Guide</h2> | |
<p><strong>Note:</strong> This website is not fully available unless you install it as a PWA. Please follow the instructions below to install and get the best experience. 🚀</p> | |
<h3>iOS (Safari) 🍏</h3> | |
<h4>1. Installing the PWA:</h4> | |
<ol> |
OlderNewer