JEMBOT MAWOT Bypass Shell
<?php
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
* Description of Tableau
*
* @author pierre
*/
class Tableau {
var $html;
public function generationLigne($contenu) {
$this->html = "";
$this->html .= "<tr>";
// $value = new Colonne();
foreach ($contenu as $value) {
$this->html .= "<td ";
$this->html .= testValeur($value->style, "", "", "class=\" vTop " . $value->style . "\" ");
$this->html .= ">";
$this->html .= $value->contenu;
$this->html .= "</td>";
}
$this->html .= "</tr>";
return $this->html;
}
}
class Colonne {
var $style;
var $contenu;
function __construct($style, $contenu) {
$this->style = $style;
$this->contenu = $contenu;
}
}
xxxxx1.0, XXX xxxx