He can generate the title with
<?php
echo PAGE_TITLE;
?>
or if he wants menu title then
echo MENU_TITLE
But he said also "a little of text.."
Try with this droplet, this is ShowSection droplet from AMASP (little changed for your needs

)
global $database, $wb;
$sections=explode(",",$section);
shuffle($sections);
$get_content = $database->query("SELECT content FROM ".TABLE_PREFIX."mod_wysiwyg WHERE section_id = '$sections[0]'");
$fetch_content = $get_content->fetchRow();
$content = ($fetch_content['content']);
$wb->preprocess($content);
return substr($content,$txt_start,$txt_lenght).'...';
Name your droplet: txtpiece and try this call:
[[txtpiece?section=51&txt_start=0&txt_lenght=100]]
Where 51 is your sectio number, txt_start is starting point, txt_lenght is how much characters you want to display from starting point..
Example: If your text is: Hello world! , droplet [[txtpiece?section=51&txt_start=6&txt_lenght=5]] wil display: world...
Just note to input correct section number

good luck
