| 
<?php
/***************************************************************************
 *   example_phrase.php
 *   Copyright (c) 2007 David Frendin ([email protected])
 *
 *   This program is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation; either version 2 of the License, or
 *   (at your option) any later version. See the GNU General Public License
 *   for more details.
 *
 ***************************************************************************/
 
 /***************************************************************************
 *   Example: Phrase
 *   This example will do a basic spell-check of a phrase, and return the frase formated
 *    highlighting (in a discrete way) potential misspellings.
 *
 ***************************************************************************/
 
 
 /* ___[ Below is example code ]_____________________ */
 require_once('mysql4.php');    //from phpbb2
 require_once('lib_dictionary.php');
 
 define('DICTIONARY_TABLE', 'dictionary');
 
 //connect to db
 $db = new sql_db('localhost', 'username', 'password', 'table', false);
 if(!$db->db_connect_id)
 {
 die("Could not connect to the database");
 }
 
 $dict = new dictclass();
 
 
 
 $phrase = "Computers are magnificent tools for the realization of our dreams, but no machine can replace the human sparrk of spirit, compassion, love, and understanding.";    //Louis Gerstner
 $phrase2 = "The reall danger is not that computers will begin to think like men, but tat men will begin to think like computerrs.";    //Sydney J. Harris
 echo $dict->spell_phrase($phrase, true);
 echo "\n<p>\n";
 echo $dict->spell_phrase($phrase2, true);
 die();
 
 /* ___[ End of example code ]_____________________ */
 ?>
 |