Example #1
0
<?php

use PFBC\Form;
use PFBC\Element;
session_start();
error_reporting(E_ALL);
include "../PFBC/Form.php";
if (isset($_POST["form"])) {
    if (Form::isValid($_POST["form"])) {
        header("Content-type: application/json");
        echo file_get_contents("http://maps.google.com/maps/api/geocode/json?address=" . urlencode($_POST["Address"]) . "&sensor=false");
    } else {
        Form::renderAjaxErrorResponse($_POST["form"]);
    }
    exit;
}
include "../header.php";
$version = file_get_contents("../version");
?>

<div class="page-header">
	<h1>Ajax</h1>
</div>

<p>PFBC provides several properties and methods for facilitating ajax submissions.  To get started, you'll first need to set the ajax property in
the form's configure method.  The ajaxCallback property can also be included in the configure method if you'd like a javascript function to called
after the form's data has been submitted.  In the example below a callback function has been set to extract the latitude/longitude information from a
json response.</p>

<p>The validation process for an ajax submission also differs slightly from that of a standard submission.  If the form's isValid method 
returns false, you will need to invoke the renderAjaxErrorResponse method, which returns a json response containing the appropriate error messages.