我們試圖從前端表單向Json文件添加一些新用戶。將用戶添加到Json列表#PHP #JS
我們通過Js傳遞從表單中獲取的代碼,然後我們試圖通過PHP(通過PHP)將用戶插入的值傳遞給json文件。
從HTML摘自JS
<div class="log">
<p>Username Nuovo Utente</p>
<input class="nome" id="nuovoUtente" placeholder="inserisci il nome"><br>
<p>Password Password Nuovo Utente</p>
<input type="password" id="nuovaPsw" class="psw"> <br>
<button type="submit" class="lo" id="aggiunto">Aggiungi Nuovo Utente</button>
</div>
提取文件
let newNom = document.getElementById('nuovoUtente');
let newPass = document.getElementById('nuovaPsw');
aggiunto.onclick=function(){
$.get("utenti.php", { nome: newNom.value , pw: newPass.value });
}
php文件
<?php
$data[] = $_GET['data'];
console.log($data[]);
$inp = file_get_contents('pindex.json');
$tempArray = json_decode($inp);
array_push($tempArray, $data);
$jsonData = json_encode($tempArray);
file_put_contents('pindex.json', $jsonData);
?>
問題是什麼/問題? –
'$ .get(「utenti.php」,{nome:newNom.value,pw:newPass.value});'爲了您自己和其他人的安全請*不要*通過GET發送密碼 –
是那些標籤? – apokryfos