Using, PHP I want to get the last part of url (i.e. the part after the last slash).
So,
From:
http://scta.info/resource/person/Aristotle
I would like to just get
Aristotle
$link = 'http://scta.info/resource/person/Aristotle';
$myarray = explode('/',$link);
echo end($myarray);