Results 1 to 4 of 4

Thread: Once more I need Help...

  1. #1
    Join Date
    Jun 2006
    Posts
    148
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Exclamation Once more I need Help...

    Ok,
    Once more I need help. I have this script
    Code:
    <?PHP
    $yourFile = "dbinfo.php";
    if(!$_POST['submit']) {
    $fs = fopen($yourFile, "r");
    while(!feof($fs)) {
    $fileData = fread($fs, 1024);
    }
    }else{
    $fs = fopen($yourFile, "w");
    fwrite($fs, $_POST['fileData']);
    }
    fclose($fs);
    ?>
    <form method="POST">
    <?PHP print $yourFile; ?>'s contents:
    <textarea name="fileData" rows=5 cols=100><?PHP print $fileData; ?></textarea><br />
    <input type="submit" value="Save" name="submit">
    </form>
    And when I change the php file from within there after I save it puts odd /'s in the php file at random places... :/
    Cheap Webhosting At ONE TIME fees! Also offering Scripts, Software, Web Designs, and Graphic Designs. Outstanding Designs and Webhosting!

  2. #2
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    Code:
    fwrite($fs, stripslashes($_POST['fileData']));
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

  3. #3
    Join Date
    Jun 2006
    Posts
    148
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    where do I put that? Just anyware?
    Cheap Webhosting At ONE TIME fees! Also offering Scripts, Software, Web Designs, and Graphic Designs. Outstanding Designs and Webhosting!

  4. #4
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    In place of the existing fwrite() call
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •