刷新服务器端后网页保留内容

时间:2016-04-17 05:22:02

标签: html html5

我想创建一个保留内容的简单文本网页。我想保留服务器上保存的内容(php或sql很好)。

sessionStorage和localStorage不是我正在寻找的东西。那些将数据保存在用户计算机上,并且不允许其他计算机看到同样的事情。

由于

1 个答案:

答案 0 :(得分:0)

所以我对你的问题感到困惑我认为你的意思是从mysql中拉出字符串并将其显示在网页上,所以这是一个例子。

    <?php
//Connect
$user = 'example';
$password = 'example';
$host = 'example';
$link = mysql_connect($host, $user, $password);
mysql_select_db('example_db');

$handle = mysql_query('SELECT * FROM Example_db');
$row = mysql_fetch_row($handle);

$text = $row[0]; // Retrieve text in database
//Variable name above can be what ever you want it to be.
?>
//Example html
<h1><?php echo $text;></h1>
如果我错了,请告诉我,如果是这样,请告诉我,我可以看看能否进一步帮助你。