fork(14) download
  1. <?php
  2.  
  3. function makeTextInputField($name) {
  4. $text = ucfirst($name);
  5. echo "
  6. <label for='{$name}'>{$text}</label>
  7. <input type='text' name='{$name}' />
  8. ";
  9. }
  10.  
  11. ?>
  12.  
  13. <h1>Welcome</h1>
  14. <?php makeTextInputField('email'); ?>
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
    
<h1>Welcome</h1>

			<label for='email'>Email</label>
			<input type='text' name='email' />