User Tag List

Results 1 to 3 of 3

Thread: Moo sock with HTTP POST Method

  1. #1
    No Products Registered

    Join Date
    Sep 2006
    Location
    Italy
    Posts
    31
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Moo sock with HTTP POST Method

    How i can send data to php page using Moo Sock with POST method?

  2. #2
    Clicker Multimedia Fusion 2 Developer

    Join Date
    Jun 2006
    Location
    Darlington, UK
    Posts
    3,298
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Moo sock with HTTP POST Method

    To send the following data: user=abc password=123
    To the following address: http://www.example.com/somepath/data.php

    Code:
    Connect to the www.example.com on port 80, then when connected send:
    
    POST /somepath/data.php HTTP/1.1
    Host: www.example.com
    Content-Type: application/x-www-form-urlencoded
    Content-Length: 21
    
    user=abc&password=123

  3. #3
    No Products Registered

    Join Date
    Sep 2006
    Location
    Italy
    Posts
    31
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Moo sock with HTTP POST Method

    Thank you very much.

Similar Threads

  1. MOO Sock + V. Large Files
    By GundarK in forum Multimedia Fusion 2 - Technical Support
    Replies: 2
    Last Post: 26th July 2019, 07:12 AM
  2. bug with MOOSock and HTTP POST
    By neat_Kliker2 in forum Multimedia Fusion 2 - Technical Support
    Replies: 6
    Last Post: 12th May 2007, 11:31 AM
  3. Ferret.Sock + FileStream
    By turboferret in forum Extension Developers Lobby
    Replies: 27
    Last Post: 23rd August 2006, 01:59 AM
  4. MooGame/Click/Sock
    By DeepGames in forum Multimedia Fusion 2 - Technical Support
    Replies: 3
    Last Post: 31st July 2006, 02:00 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
  •