Ok i have this script to edit a page but i keep getting the following error at the bottom.
Warning: Cannot modify header information - headers already sent by (output started at _______________________members/edit.php:53) in _______________________members/edit.php on line 73
The edit code is
Any one help me please
Warning: Cannot modify header information - headers already sent by (output started at _______________________members/edit.php:53) in _______________________members/edit.php on line 73
The edit code is
| Code: |
| <?php
echo "<form method=post action=edit.php?action=edit><textarea cols=60 rows=20 name=edit>"; $file = "index.php"; $fh = fopen($file, 'r'); $theData = fread($fh, filesize($file)); echo $theData; fclose($fh); echo "</textarea><input type=submit value=Edit></form>"; if($_GET['action'] == 'edit') { $fh = fopen($file, 'w') or die("can't open file"); $stringData = $_POST['edit']; fwrite($fh,stripslashes($stringData)); fclose($fh); } { header("Location: edit.php"); } echo "</center>"; ?> |
Any one help me please
