WebsiteBaker 2.13.8 is now available!
R.I.P Dietmar (luisehahne) and thank you for all your valuable work for WBhttps://forum.websitebaker.org/index.php/topic,32355.0.html
function get_main_menu($regex,$content) { preg_match($regex,$content,$matches); return $matches[1]; } $hv_content = file_get_contents('http://www.yourdomain.com/home.php'); $main_menu = get_main_menu('/ul id="menu">(.*)<\/ul>/isU',$hv_content); echo"$main_menu";