PHP: POST to iFrame

Let’s say I want to make a form that, when submitted, posts the information to an iFrame on the same page. This is a simple task. Just do the following:   1.   Use these <form> tags: <form target=”iframe” method=”post” action=”yourfilename.php”> … Continue reading

PHP: Writing Files

Update: I found a function (file_put_contents) that does the below work for us: file_put_contents($filename, $data, $flags); If you need more info, look the function up on PHP.net.     Let’s say we have a form that submits the inputted info … Continue reading