PHP Classes

File: att_enc_test.php

Recommend this page to a friend!
  Classes of Free Ment   PHP Live Chat Browser   att_enc_test.php   Download  
File: att_enc_test.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Live Chat Browser
Live chat with users of the same or another site
Author: By
Last change:
Date: 1 year ago
Size: 416 bytes
 

Contents

Class file image Download
<?php

$contents
= 'ccc<a href="http://somelink">some link text</a>ddd';
//print('here001<br />');
define(DS, DIRECTORY_SEPARATOR);
//print('here002<br />');
include('..' . DS . 'LOM' . DS . 'O.php');
//print('here003<br />');
$O = new O($contents);
//print('here004<br />');
$a = $O->get_tagged('a@href=' . $O->enc('http://somelink'));
//print('here005<br />');exit(0);
print('$a: ');var_dump($a);

?>