Onbekend |
|
hey, ik krijg de volgende fout:
<b>Warning</b>: htmlspecialchars() expects parameter 1 to be string, array given in <b>/opt/www/coussementd/web/www.gamestar.be/postcheats.php</b> on line <b>131</b><br />
<b >Warning </b >: htmlspecialchars() expects parameter 1 to be string , array given in <b >/opt /www /coussementd /web /www .gamestar .be /postcheats .php </b > on line <b >131</b ><br />
bij het volgend stukje script:
<?php
class posten
{
var $url;
var $values = array();
function setvalues($inleiding, $naam, $console, $text)
{
$this->values['inleiding'] = htmlspecialchars($inleiding);
$this->values['naam'] = htmlspecialchars($naam);
$this->values['console'] = htmlspecialchars($console);
$this->values['text'] = htmlspecialchars($text);
}
?>
<?php class posten { var $url; function setvalues($inleiding, $naam, $console, $text) { } ?>
als ik bij het laatste (dus bij text) de htmlspecialchars weglaat dan staat er in mijn database waar normaal de text hoor te staan:
Array??!!
wat moet ik hieraan doen??
de text is gewoon:
'test van text'
|