so i tried to make textarea that update other page, the code and its not wroking, i tried changing few things and still not working
<form>
<textarea name="writing"> <?php echo file_get_contents('thetext.html') ?></textarea>
<input type="submit" name="submitsave" value="Save">
</form>
<?php
if (isset($_POST['submitsave']))
{
file_put_contents('thetext.html', $_POST['writing']);
}
?>