"Rapidminer Server Edit Html result"

mayria451993mayria451993 Member Posts: 1 Contributor I
edited June 2019 in Help

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

  • sgenzersgenzer Administrator, Moderator, Employee, RapidMiner Certified Analyst, Community Manager, Member, University Professor, PM Moderator Posts: 2,959 Community Manager

    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_OttThomas_Ott RapidMiner Certified Analyst, RapidMiner Certified Expert, Member Posts: 1,761 Unicorn

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

Sign In or Register to comment.