473,395 Members | 1,968 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Stripslashes from this file overwriting form

scodal
1
Can someone help me stripslashes from this code? When you save the file with your new modifications it adds slashes anywhere it sees a "quote" and it breaks the code.

Expand|Select|Wrap|Line Numbers
  1. <head>
  2. <style type="text/css">
  3. textarea {
  4. font-size:11px;
  5. font-family:"Courier New", Courier, mono;
  6.     }
  7. </style>
  8. </head>
  9. <body>
  10. <?php
  11.  
  12. if(isset($_POST['submit'])) {
  13. $content = $_POST['contents'];
  14. $file = fopen("nav.php", "w");
  15. fwrite($file, $content);
  16. fclose($file);
  17. }
  18. ?>
  19.  
  20. <h1>Alter File</h1>
  21. <form name="edit" method="post">
  22. <textarea name="contents" cols="80" rows="23">
  23.          <?php
  24.                 $file = "nav.php";
  25.                 $open = fopen($file, "r");
  26.                 $size = filesize($file);
  27.                 $count = fread($open, $size);
  28.                 echo($count);
  29.         ?>
  30. </textarea><br />
  31.     <input type="submit" name="submit" value="Submit">
  32. </form>
  33. </body>
  34. </html>
Jun 6 '12 #1
0 1153

Sign in to post your reply or Sign up for a free account.

Similar topics

15
by: Simon | last post by:
I would like to create a very basic file upload add image form to add to my web site and to keep them in a "tmp" directory within my web hosting file manager once uploaded. I understand the basic...
5
by: DCK | last post by:
Hello I've path to file, which look like this: \\COMPUTER\D$\C++\FILE_TO_DELETE.JPG This path was generated by os.path.walk() function. When i try to delete this file, os.remove() can't find...
1
by: woodBeeProgrammer | last post by:
CONTEXT ok, so if i register the file extension .bar Windows is happy and when a user double clicks myApp gets called. but if the user double clicks my data file BEFORE i get to register, the...
0
by: Daniel Wilson | last post by:
I have a small Windows Form app in Visual C++ .NET 2003. I opened it up today and got the following message on the tab for my form. An error occured while loading the document. Fix the error,...
0
by: Niels van de Coevering via .NET 247 | last post by:
I've been trying to find the right solution through google, but haven't come upon the right solution. How do I extract an avi file (stream) from a project resource and play this file (stream) on a...
4
by: bjkstudio | last post by:
Hello I am trying to create a simple file upload form so my band members can upload mp3s onto my server. I am using this tutorial: http://www.tizag.com/phpT/fileupload.php I am having...
3
by: PSI_Orion | last post by:
I am writing a database which I edit locally using PHP / MySQL / JavaScript. What I currently do is to list all my DVD covers from a single folder into a drop box but what I would LIKE to do is to...
1
by: shilpa1205 | last post by:
I have written a page similar to file upload form.....which takes in a input from the browse and does soem functionality and displays the success message in next page. <html:file...
1
by: Andrus | last post by:
I need to create legal file name form any string so that PDF and other viewers show nice title. I created method LegalFileName() which uses 2 helper methods. It replaces <>\/:?*"| characters in...
2
by: migi | last post by:
Hello, I'm not too familiar with html, but I'd like to know is it possible to create a file in FORM POST? The file should be created in certain folder in Web server. The reason I'm asking is...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.