Hi everyone!
I want to get rid of the middlename of a person before outputting it. Since it isn't my database I can't do anything about the middlenames.
It would do this:
$name = "Michael 'Bulldozer' Karlsson";
[removing the middlename (which is always between singlequotes) ]
$name = "Michael Killind";
How can I do this?
Thanks
Vasse