Hi guys, i have a strange problem... I'm getting string-data from db:
$siteDesc = strval( $configHandle->getConfigValue( 'SITE_DESCRIPTION' ) );
var_dump( $siteDesc );
It returns:
string(19) "Some description..."
But in code:
<input type="field" name="site_desc" value="<?=$siteDesc;?>" />
There is a lo of spaces in textfield before text:
" Some description..."
Why?