| Server IP : 51.222.109.124 / Your IP : 216.73.217.148 Web Server : Apache System : Linux scl07net.netdom.salvador.br 3.10.0-962.3.2.lve1.5.44.3.el7.x86_64 #1 SMP Mon Feb 22 04:35:33 EST 2021 x86_64 User : vertra94 ( 1153) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/vertra94/public_html/loja/app/helpers/ |
Upload File : |
<?php
function editor( $val = '', $n='editor', $h = '200px', $w = '200px', $dest = 'file_upload.php' )
{
$body = "";
//$body .= "<meta charset=\"iso-8859-1\">\n";
$body .= "<link rel=\"stylesheet\" href=\"helpers/redactor/api/css/redactor.css\" />\n";
//$body .= "\t<script src=\"helpers/redactor/api/jquery-1.7.min.js\"></script>\n";
$body .= "\t<script src=\"helpers/redactor/api/redactor.js\"></script>\n";
$body .= "\t<textarea id=\"$n\" class=\"redac\" name=\"$n\" style=\"height: $h; width:$w !important\">$val</textarea>\n";
//@header( 'Content-Type: text/html; charset=iso-8859-1' );
return trim( $body );
}
?>