Login   Register  
PHP Classes
elePHPant
Icontem

File: examples/fxHeight.example.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Hasin Hayder  >  MooFx Generator  >  examples/fxHeight.example.php  >  Download  
File: examples/fxHeight.example.php
Role: Example script
Content type: text/plain
Description: fxHeight Example
Class: MooFx Generator
PHP wrapper to MooFx JavaScript effects library
Author: By
Last change:
Date: 2006-04-20 19:24
Size: 1,332 bytes
 

Contents

Class file image Download
<!DOCTYPE html PUBLIC>
<html>
<title>Example of fxHeight</title>
<?
include("../moo.class.php");
mooFxGenerator::initiate();
?>
<body>
<h3 id="stretcher1">Click on me to close the following para</h3>
<div id="stretched1" style="width: 400px;" >
When PHP parses a file, it looks for opening and closing tags, which tell PHP to start and stop interpreting the code between them. Parsing in this manner allows php to be embedded in all sorts of different documents, as everything outside of a pair of opening and closing tags is ignored by the PHP parser. Most of the time you will see php embedded in HTML documents, as in this example.
</div>
<h3 id="stretcher2">Click on me to close the following para</h3>
<div id="stretched2" style="width: 400px" >
When PHP parses a file, it looks for opening and closing tags, which tell PHP to start and stop interpreting the code between them. Parsing in this manner allows php to be embedded in all sorts of different documents, as everything outside of a pair of opening and closing tags is ignored by the PHP parser. Most of the time you will see php embedded in HTML documents, as in this example.
</div>
</body>
<?
$fh 
= new fxHeight("stretcher1","stretched1"500);
$fh->generate();
$fh2 = new fxHeight("stretcher2","stretched2"500);
$fh2->generate();
?>
</html>