How to get values from Fusion in PHP with Get Object?

Welcome to our brand new Clickteam Community Hub! We hope you will enjoy using the new features, which we will be further expanding in the coming months.

A few features including Passport are unavailable initially whilst we monitor stability of the new platform, we hope to bring these online very soon. Small issues will crop up following the import from our old system, including some message formatting, translation accuracy and other things.

Thank you for your patience whilst we've worked on this and we look forward to more exciting community developments soon!

Clickteam.
  • That's because you're using POST for the "on get complete" It will does nothing. Post is used when you connect to a URL.

    To receive data, all you can do with GetObject is to get the content of a php page. So you must do:

    * Get Object: On get complete
    String : Set alterable string to Received$( "Get Object" )

  • First, you don't need the "on received" action for this, it does nothing in your example. The Post values must be sent with the get URL only.

    Second, what you're asking is simply php/html coding, so just put this in your "collectdata.php" file:

    PHP
    <?php
    if (isset($_POST['TubeSize'], $_POST['TubeLenght'], $_POST['AppID'],))
    {
    	$value1 = $_POST['TubeSize'];
    	$value2 = $_POST['TubeLenght'];
    	$value3 = $_POST['AppID'];
    	
    	echo $value1 . "<br>" . $value2 . "<br>" . $value3;
    }
    ?>


    Then do what you want with the values, in this example i just display them.

Participate now!

Don’t have an account yet? Register yourself now and be a part of our community!