Utiliser une variable JS dans du code php
Résolu/Fermé
zaks91
Messages postés
12
Date d'inscription
dimanche 22 mai 2016
Statut
Membre
Dernière intervention
31 juillet 2016
-
22 mai 2016 à 17:02
zaks91 Messages postés 12 Date d'inscription dimanche 22 mai 2016 Statut Membre Dernière intervention 31 juillet 2016 - 25 mai 2016 à 11:08
zaks91 Messages postés 12 Date d'inscription dimanche 22 mai 2016 Statut Membre Dernière intervention 31 juillet 2016 - 25 mai 2016 à 11:08
A voir également:
- Variable js to php
- Qwerty to azerty - Guide
- Js round ✓ - Forum Javascript
- Mb to mo ✓ - Forum Matériel & Système
- Wfp to mp4 - Forum Accessoires & objets connectés
- Welcome to nginx! ✓ - Forum Applis & Sites
2 réponses
zermat
Messages postés
160
Date d'inscription
jeudi 19 juin 2014
Statut
Membre
Dernière intervention
3 juin 2016
16
22 mai 2016 à 17:09
22 mai 2016 à 17:09
Dans ce cas tu dois utiliser Ajax (Asynchronous JavaScript and XML)
22 mai 2016 à 17:34
22 mai 2016 à 17:51
var xhttp = new XMLHttpRequest();
xhttp.open("GET", "page_php.php?variable="+selectedValue, true);
xhttp.send();
Dans page_php.php recuperer la variable selectedValue :
$selectedValue = $_GET['variable'];
22 mai 2016 à 22:02