Jump to content

m00gzilla

New Members
  • Posts

    7
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

m00gzilla's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. ok, here is my php code [code] <?php if (isset($_POST['Description'])) // If form was submitted with a message {   $File = 'news.txt'; // Set filename   $Handle = fopen($File, 'w'); // If file does not exist, create it     $rep = str_replace("\n"," ",$_POST['Description']);   $Write = fwrite($Handle, $rep); // Write the new entry to the end   $Close = fclose($Handle); // Close the file } ?> [/code] I'm still having the issue of anytime a quote is used I get /" /" instead of " "
  2. Are you sure your ftp login has the permissions to make and delete files, dirs, folders? Can you log on via http and check out the user settings with the main account? Usually there is an option to set permissions this way.
  3. [quote author=Wintergreen link=topic=108878.msg438771#msg438771 date=1158850818] instead of str_replace try ereg_replace("\s+", " ", $string); That should take any tabs, newlines and white space and convert it to a single space [/quote] ok, tried that. It removed all the 's' characters from the string and replaced them with blanks.
  4. Thanks Trillion. That helped clean up some of it. Now I am still getting the escape character whenever quotes are used. example:  This is what it shows if I use \"quotes\".
  5. Hi - my first post here I have a flat file that gets created in PHP and read in Flash. The problem I am having is when Flash shows the text from the flat file, it bring's with it escape codes (\n) and html nbsp codes. Is there something in the php script I need to add to keep it from doing this?? Originally when I was testing from the Flash .swf file, it read the text fine without any extra characters. So, i'm assuming now it's coming from the PHP side. Any help would be great! Thanks!
×
×
  • 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.