"Rapidminer Server Edit Html result"

mayria451993
mayria451993 New Altair Community Member
edited November 2024 in Community Q&A

Hello, I barely use rapidminer server. 
I create o process in Rapidminer and after rapidminer server i take the prediction through an html table. My issue is that I want to edit this table in my php file but i can't. The code i use to print this html result in my php page is << 

 if(isset($_POST['submit'])){ 

          $opts = array(

             'http'=>array(

              'method'=>"GET",

              'header' => "Authorization: Basic " . base64_encode("$username:$password"))

             );

           $context = stream_context_create($opts);

          $file = file_get_contents($url, false, $context);

           print($file);

      }>>

 

That works fine. I just want to remove some columns when i print it. 
Thank you!

Answers

  • sgenzer
    sgenzer
    Altair Employee

    hello @mayria451993 - welcome to the user community.  It is good to have you here.  Your question is really about PHP/HTML rather than RapidMiner so I will see if others chime in to help.

     

    Scott

     

  • Thomas_Ott
    Thomas_Ott New Altair Community Member

    I'm no PHP hack but why not write the results back to a database and then use PHP to extract what you need?