PHP and Javascript implementations of a simple markdown parser
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

markdownphp.php 193B

1234567891011
  1. <?php
  2. if ($_SERVER['REQUEST_METHOD'] == 'POST') {
  3. $readerNames = $_POST['readers'];
  4. $markdown = $_POST['markdown'];
  5. print('Not yet implemented');
  6. exit();
  7. }
  8. ?>
  9. <!DOCTYPE html>
  10. <html>
  11. </html>