PHP Classes

File: example/index.php

Recommend this page to a friend!
  Classes of Cesar D. Rodas   Auto Ajax   example/index.php   Download  
File: example/index.php
Role: Example script
Content type: text/plain
Description: Example
Class: Auto Ajax
Update page parts with AJAX when links are clicked
Author: By
Last change: * Changing example, showing how to force a link to avoid ajax query.
Date: 16 years ago
Size: 954 bytes
 

Contents

Class file image Download
<?php
include_once("definition.php"); /* auto-ajax definition */
global $ajax; /* Important, always do this, because this page will be include */
$ajax->add("central","welcome.php");
$ajax->add("bottom","time.php");
?><html>
<head>
    <title>Testing Auto-Ajax</title>
    <?php $ajax->printjs() ?>
</head>
<body>
<table width="100%">
<tr>
    <td colspan="2" align="center"><h1>Testing AutoAjax</h1></td>
</tr>
<tr>
<td width="12%" valign="top">
    <a href="welcome.php">Home</a><br />
    <a href="about.php">About</a><br />
    <a href="copyleft.php">Copyleft</a><br />
    <a href="time.php">Refresh time</a>
    <a href="normal-request.php" rel="no-ajax">Normal request</a>
</td>
<td width="88%">
    <?php
       
//Printing Ajax section
       
$ajax->AjaxSection("central");
   
?>
</td>
</tr>
<tr>
    <td colspan="2" align="center">
    <?php
       
//Printing Ajax section
       
$ajax->AjaxSection("bottom");
   
?>
</td>
</tr>
</table></body>
</html>