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!