Jump to content

Why Is This Happening?


glenelkins

Recommended Posts

consider this code..when the save button is hit, it saves fine, but the page has so be refreshed to show the new content, why is this when the read file code comes after the save file code? it does not make sense


[code]
<?

// Get the file and A
$file = $_GET['file'];
$action = $_GET['a'];
$contents = $_POST['filecontents'];

// Check if file is empty
if (empty($file)) {
echo "Please Enter A File Name";
exit();
}

// Check file exists
if (!(file_exists($file))) {
echo "The File Does Not Exist";
exit();
}

// Check if the filesize is above 0
if ($file_size = filesize($file) <= 0) {
echo "There Is Nothing In The File";
exit();
}

// Check for save action
if ($action == "save") {
if (!(is_writeable($file))) {
echo "This File Is Not Writeable";
exit();
}

// Open for writing
if (!($file_handle = fopen($file,"w"))) {
"Cannot Open The File";
exit();
}

// Write to file
if (!(fwrite ($file_handle,trim($contents," ")))) {
"Cannot Write To File";
exit();
}

// Close
fclose ($file_handle);

// Show message
$_GET['msg'] = "File Saved!";
}

// Open the file for reading
if(!($file_handle = fopen($file,"r"))) {
echo "Cannot Read File";
exit();
}

// Read the contents of the file
$file_contents = fread($file_handle,filesize($file));
$file_contents = trim($file_contents," ");

// Close the file
fclose ($file_handle);

// Display The File
// In a form
?>

<!-- START HTML -->
<form name="openfileform" action="?file=<? echo $file; ?>&a=save" method="post">
<p style="font-weight: bold"><? echo $_GET['msg']; ?></p>
<p>
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
File Size: <? echo $file_size; ?> bytes
</td>
<tr>
<td>
<textarea name="filecontents" rows="50" cols="100"><? echo $file_contents; ?></textarea>
</td>
</tr>
<tr>
<td>
<input type="submit" value="Save">
</td>
</tr>
</table>
</p>
</form>
<!-- END HTML -->
[/code]
Link to comment
https://forums.phpfreaks.com/topic/24128-why-is-this-happening/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.