Difference between revisions of "Installation"

From Artificial Neural Network for PHP
(New page: <big>'''ANN - Artificial Neural Network for PHP 5.x'''</big> This chapter describes the steps to implement the ANN source code to your project. == Installation == * Unpack the source c...)
 
Line 13: Line 13:
   
 
<code>
 
<code>
<?php<br>
+
<b>&lt;?php</b><br />&nbsp;<br />
require_once ('ANN/ANN_Network.php');<br>
+
<b>require_once</b> ('ANN/ANN_Network.php');<br>
$ann = new ANN_Network;<br>
+
$ann = <b>new</b> ANN_Network;<br />&nbsp;<br />
?><br>
+
<b>?&gt;</b><br>
 
</code>
 
</code>
 
<div style="background-color: #eeeeee; font-familiy: Courier">Links flutender Blocksatz</div>
 

Revision as of 20:07, 17 December 2007

ANN - Artificial Neural Network for PHP 5.x

This chapter describes the steps to implement the ANN source code to your project.


Installation

  • Unpack the source code

tar -xzf ann200.tar.gz

  • Including to your source

<?php
 
require_once ('ANN/ANN_Network.php');
$ann = new ANN_Network;
 
?>