You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
773 B
31 lines
773 B
3 years ago
|
|
||
|
## Aller dans htdocs de votre xampp
|
||
|
## créer un dossier blog
|
||
|
## dans ce dossier crer un index.php, ou bien renommer le précédent et en créer un nouveau
|
||
|
|
||
|
## mettre juste coucou dans index.php et se rendre à l'adresse <url de base de votre machine>/blog/
|
||
|
|
||
|
- localhost (en général sous windows)
|
||
|
- 127.0.0.1
|
||
|
- localhost:8080
|
||
|
- une adress ip 192.154.3.121
|
||
|
|
||
|
Au cas ou sous mac utiliser le "Got To application"
|
||
|
|
||
|
|
||
|
Pour se connecter dans un premier temps prendre un template html.
|
||
|
|
||
|
cf par exemple :
|
||
|
<!DOCTYPE html>
|
||
|
<html lang="fr">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title></title>
|
||
|
</head>
|
||
|
<body>
|
||
|
</body>
|
||
|
</html>
|
||
|
|
||
|
Ensuite on veut se connecter à la base de données :
|
||
|
https://git.polux.studio/Juan/cours-MDS/src/branch/master/b1-bak/session2/blog/index.php
|