SyntaxFix
Write A Post
Hire A Developer
Questions
<?php if (isset($_POST['str'])){ function printme($str){ echo $str; } printme("{$_POST['str']}"); } ?> <form action="<?php $_PHP_SELF ?>" method="POST"> <input type="text" name="str" /> <input type="submit" value="Submit"/> </form>