~ubuntu-branches/ubuntu/raring/php-net-whois/raring

« back to all changes in this revision

Viewing changes to Net_Whois-1.0.4/tests/test.php

  • Committer: Bazaar Package Importer
  • Author(s): Dario Minnucci
  • Date: 2011-08-23 14:26:12 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110823142612-s6t1dbye9qh050yo
Tags: 1.0.5-1
* New upstream version (1.0.5)
* debian/control:
  - Added Vcs-{Git|Browser} fields: php-net-whois goes collab-maint
  - Bump Standards-Version to 3.9.2 (no changes)
  - Use debhelper >= 8
* debian/copyright: updated

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?php
2
 
require_once 'Net/Whois.php';
3
 
$nw = new Net_Whois;
4
 
echo $nw->query ("linux.ie");
5
 
 
6
 
?>