This is easily one of the simplest questions, but my mind has drawn a blank. How would you add a character in front of a string? Lets say I had the string ello. How would I add an H to make it Hello? Thanks.
try using, substr_replace();
e.g.
<?php $hello="ELLO"; print substr_replace($hello,"H",0,0); ?>
Thanks thats exactly what I needed.