User Tag List

Results 1 to 7 of 7

Thread: Extension to post data to text or xml file?

  1. #1
    Clicker Fusion 2.5 DeveloperSWF Export Module

    Join Date
    Apr 2008
    Posts
    488
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Extension to post data to text or xml file?

    Is there an extension that will post a line to a text file or xml file on a server. I know the live receiver can receive data, anything extension to post?

  2. #2
    Clicker Multimedia Fusion 2 DeveloperiOS Export ModuleSWF Export Module
    Jaffob's Avatar
    Join Date
    May 2008
    Location
    USA
    Posts
    1,833
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Extension to post data to text or xml file?

    You could write a PHP script that would write a line based on the GET or POST argument, and use Live Receiver to run it.

    Post #300!

  3. #3
    Clicker Fusion 2.5 DeveloperSWF Export Module

    Join Date
    Apr 2008
    Posts
    488
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Extension to post data to text or xml file?

    As there an example for that?

  4. #4
    Clicker Multimedia Fusion 2 DeveloperiOS Export ModuleSWF Export Module
    Jaffob's Avatar
    Join Date
    May 2008
    Location
    USA
    Posts
    1,833
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Extension to post data to text or xml file?

    Do you know PHP?

  5. #5
    Clicker Fusion 2.5 DeveloperSWF Export Module

    Join Date
    Apr 2008
    Posts
    488
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Extension to post data to text or xml file?

    a have some knowledge of it

  6. #6
    Clicker Multimedia Fusion 2 DeveloperiOS Export ModuleSWF Export Module
    Jaffob's Avatar
    Join Date
    May 2008
    Location
    USA
    Posts
    1,833
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Extension to post data to text or xml file?

    Try this code:

    PHP Code:
    <?php

    $res 
    fopen('file.ext','a');

    fwrite($res$_POST['text'] . "\n");
    fclose($res);

    ?>
    Then use Live Receiver to access the file with a POST command.

  7. #7
    Clicker Fusion 2.5 DeveloperSWF Export Module

    Join Date
    Apr 2008
    Posts
    488
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Extension to post data to text or xml file?

    thanks, I will try it!

Similar Threads

  1. GET Object - Post data: special characters
    By Popcorn in forum Multimedia Fusion 2 - Technical Support
    Replies: 10
    Last Post: 6th June 2013, 12:03 AM
  2. Sending POST data with the Get object...
    By RGBreality in forum Multimedia Fusion 2 - Technical Support
    Replies: 8
    Last Post: 22nd December 2010, 10:31 PM
  3. reading a text file for lots of data (help?)
    By Tuna in forum Multimedia Fusion 2 - Technical Support
    Replies: 6
    Last Post: 19th June 2008, 12:24 PM
  4. Retrieve data of text file ASCII
    By juanjo in forum Multimedia Fusion 2 - Technical Support
    Replies: 3
    Last Post: 22nd April 2008, 03:56 AM

Posting Permissions

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