I düzenleyebilirsiniz böylece ekran benim Form verileri outputted

0 Cevap php

Nasıl benim form textarea (edit.html) gitmek (contents.html) olduğu Çıktılanan verileri görüntüleyebilir. Ben daha kolay hiçbir HTML deneyimi olan insanlar düzenlemeleri yapmak için yapmak için form sayfası bir JS HTML WYSIWYG editörü (TinyMCE) kullanıyorum.

(i am aware of XSS attacks but i'd just like to get this working for now.) I have tried echo but it will not work, anyone know how i can achieve this?

Selamlar

edit.php // Submits form data to contents.html

<?php file_put_contents("content.html", print_r($_POST['content'], true)); ?>
<form method="post">
<textarea name="content" style="width:960px; margin: 0 auto;" rows="20" cols="20">


</textarea>
<input type="submit" name="save" value="Submit" />
</form>

contents.html

// Blank until something is submitted with the form

index.php

// Retrieves data from contents.html and displays it

<?php echo file_get_contents('content.html');?>

0 Cevap