diff --git a/src/mailinglists.php b/src/mailinglists.php new file mode 100644 index 0000000..50220da --- /dev/null +++ b/src/mailinglists.php @@ -0,0 +1,13 @@ +'; + + $mailmanHTML = file_get_contents( 'https://lists.hackerspace.lu/mailman/listinfo' ); + + $listPattern = '//s'; + + preg_match_all( $listPattern, $mailmanHTML, $lists ); + + print_r( $lists[1] ); + + exit;