1--TEST-- 2Simple POST Method test 3--POST-- 4a=Hello+World 5--FILE-- 6<?php 7echo $_POST['a']; ?> 8--EXPECT-- 9Hello World 10