[ create a new paste ] login | about

Link: http://codepad.org/P7wLnwNZ    [ raw code | output | fork ]

PHP, pasted on Sep 13:
1
2
3
4
5
6
7
8
9
10
<?php

function form_input()
{
  echo 'hello world';
}
$instance['taxon_field'] = 'form_input';

call_user_func($instance['taxon_field']);
?>


Output:
1
hello world


Create a new paste based on this one


Comments: