PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
<?php
function insert($file) {
echo "<html><body>a.html file contents are: ".$file." --finished a.html.</body></html>";
}
insert(?????); // How to pass the value here?
?>