Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9004101
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T00:49:34+00:00 2026-06-16T00:49:34+00:00

PHP <?php if ($changefile) { $savedEdit = stripslashes($_POST[‘filetest’]); $filetochange = ../dashboard/list.ini; $filetochangeOpen = fopen($filetochange,w)

  • 0

PHP

<?php
if ($changefile) {
    $savedEdit = stripslashes($_POST['filetest']);
    $filetochange = "../dashboard/list.ini";
    $filetochangeOpen = fopen($filetochange,"w") or die ("Error editing.");
    fputs($filetochangeOpen,$savedEdit);
    fclose($filetochangeOpen) or die ("Error Closing File!");
}
?>

HTML form

<form method=post action="mmtst.php">   
    <textarea rows="40" cols="60" name="filetest">
    <?
        // Implode CSS
        $filetochange = "../dashboard/list.ini";
        print (implode("",file($filetochange)));
    ?>
    </textarea><br/><br/>
    <input type="submit" value="Save Changes" name="changefile">
</form>

Here I have a page that displays an INI file in a text box. What should happen is that when I click the submit button, the original file is opened, and fputs writes to the original with anything that is displayed in the txtbox. (the original file is set to permissions 777). However, nothing happens when the submit button is clicked, I have no idea what I am doing wrong, any suggestions would be awesome.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-16T00:49:35+00:00Added an answer on June 16, 2026 at 12:49 am

    The issue is simple, you have register_globals disabled and you are trying to use it, this setting allow PHP to automatically define variables depending on received parameters from GET and POST data, but it’s considered insecure and has been deprecated.

    To access the values passed in a post for use the $_POST variable, for get use the $_GET

    if( isset( $_POST["changefile"] ) ) {
    

    In case you just want to check if a post form as been submitted you could !empty($_POST) and leave the submit button without name:

    <?php //...
    if( !empty($_POST) ) {
    //...
    ?>
    <input type="submit" value="Save Changes">
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

PHP having function to get values of a form using '$_POST' for 'method=post' '$_GET'
---------------------------PHP CODE---------------------------: <?php $wtype = $_POST['wtype']; $attributes = array(); if($wtype == 'Ninja'){ $attributes['health'] =
php noob here - I've cobbled together this script to display a list of
PHP has PHP-FPM, a pool of PHP processes that run, are managed, go away
PHP - Access MSSQL datetime column from the returned array Array ( [0] =>
PHP has some pretty inconsistent parameters for functions (e.g. sometimes first haystack , then
PHP script to read in user action requests and parse them to their components.
PHP code: echo date(c); //out put like this 2012-06-19T20:37:44+05:30 echo date(d M, Y); //out
PHP's mkdir returns false on failure. Failure can be: Folder already exists Some other
PHP: I have made up a function that returns an array. I would like

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.