0

在我的网站中,我必须阅读、编辑和保存一些数据。我以这种方式执行它:

  1. 用 PHP 在一个 textarea 中加载一个名为database.txt(存储在服务器中)的文本文件id="testo"
  2. 调用importa();这是一个编辑内部文本的 javascript 函数testo
  3. 我将文本区域的内容保存在里面database.txt

这是我用来在 textarea 中加载文本的代码:

 <?php
$myFile = "database.txt";
$fh = fopen($myFile, 'r');
$theData = fread($fh, filesize($myFile));
fclose($fh);
echo '<textarea id="testo" style="width:100%;display:block;">'.$theData.'</textarea>';
?>

我有一个Save可以调用的按钮importa();

<input type="button" id="salvauser" value="Save" style="width:100%" onclick="document.getElementById('settings').style.display='none';importa();" />

现在我有了从 importa 编辑的文本区域,我必须将其文本保存到database.txt. 我写了这个函数:

<?php
$testo = $_POST['testo']."\r\n";
$documento ="database.txt";
$identificatore = fopen($documento, "a");
if (!fwrite($identificatore, $testo)){
echo"?PHP ERROR: Cannot save the file. Script not loaded.";
exit;
}
else {
fclose($identificatore);
header('Location: http://escaperope.altervista.org/testsito/index.php');
}
?>

它保存了textarea的内容,但我不知道调用后如何调用这个PHP脚本importa();(我是PHP新手)。你有什么建议吗?

在这里你可以看到importa();

function addText(elId,text) {
    document.getElementById(elId).value += text;
}

//addText allows me to add the text inside the textarea

function importa() {
 addText("testo",document.getElementById("nome2").value + ":" + document.getElementById("fc2").value+":" + document.getElementById("poke1").value + ":" + document.getElementById("poke2").value + ":" + document.getElementById("poke3").value + "tipo");
}
4

1 回答 1

1

html5方式...纯Javascript...

索引.html

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>
</style>
<script src="rw.js"></script>
</head>
<body>
<textarea id="testo"></textarea>
<button id="salva">Salva</button>
</body>
</html>

rw.js

function x(a,b,e,d,c){ // Url,callback,method,formdata or {key:val},placeholder
 c=new XMLHttpRequest;
 c.open(e||'get',a);
 c.onload=b;
 c.onerror=error;
 c.send(d||null)
}
function salva(){
 var fd=new FormData();
 fd.append('data',document.getElementById('testo').value);
 x('save.php',controllo,'post',fd);
}
function controllo(){
 if(this.response=='ok'){
  alert(this.response);//ok
  leggi();
 }else{
  alert(this.response);//errore
 }
}
function leggi(){
 x('database.txt',visualizza);
}
function visualizza(){
 document.getElementById('testo').value=this.response;
}
window.onload=function(){
 document.getElementById('salva').addEventListener('click',salva,false);
 leggi();
}

ajax 源https://stackoverflow.com/a/18309057/2450730

之后,您可以执行 addtext 或任何您想要的。

保存.php

<?php
if($_POST['data']){
 $fh=fopen('database.txt','w') or die("non riesco ad aprire il file");
 echo (fwrite($fh,$_POST['data']))?'ok':'errore';
 fclose($fh);
}
?>

未经测试......但应该在现代浏览器中工作......

如果您想更好地控制您的数据库.. 使用 JSON.parse() & JSON.stringify();

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/parse https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects /JSON/字符串化

如果您有任何其他问题,请询问。

编辑

我注意到现在你想在 db.txt 中存储你的用户和戳或任何东西......

以json方式构建所有内容..:

[
 {
  "nome":"pippo",
  "pokes":[
   {"time":05505151,"poketxt":"lol","type":"msg"},
   {"time":05505152,"poketxt":"lol2","type":"boh"}
  ]
 },
 {
  "nome":"ciccio",
  "pokes":[
   {"time":05505155,"poketxt":"lolx","type":"msg"},
   {"time":05505156,"poketxt":"lolxx","type":"boh2"}
  ]
 },
]

这很容易通过创建一个javascript数组来完成......

然后将其转换为文本字符串以存储到database.txt

在函数fd.append('data',JSON.stringify(javascriptArray))内部使用 salva

阅读文本

visualizza函数内部

用于JSON.parse(this.response)将文本转换回 javascript 数组,其中包含创建漂亮显示功能所需的所有数据。

于 2013-11-07T22:05:19.077 回答