Login   Register  
PHP Classes
elePHPant
Icontem

File: index.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Mihai Bojin  >  Simple Form  >  index.php  >  Download  
File: index.php
Role: Example script
Content type: text/plain
Description: Example file
Class: Simple Form
Create and process contact forms
Author: By
Last change:
Date: 2008-09-15 00:16
Size: 441 bytes
 

Contents

Class file image Download
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>Simple form</title>
</head>
<body>

<div>
    <!-- some site content here -->
</div>

<?php
    
/**
     * Simple way of including the form in your website
     */
    
require_once( 'SimpleForm.init.php' );
?>

<div>
    <!-- additional content here -->
</div>

</body>
</html>