~ubuntu-branches/ubuntu/oneiric/pgpool2/oneiric

« back to all changes in this revision

Viewing changes to test/pdo-test/collections.inc

  • Committer: Bazaar Package Importer
  • Author(s): Christoph Berg
  • Date: 2011-06-10 10:18:29 UTC
  • mfrom: (1.1.6 upstream) (4.2.2 sid)
  • Revision ID: james.westby@ubuntu.com-20110610101829-m1aig6u0p74qpif3
Tags: 3.0.4-1
* New upstream release
* Use format 3.0 (quilt).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
 
 
3
  function debug($con,$result,$indent,$screen) {
 
4
    $str = $indent.$result."......";
 
5
    eval ("\$result = $result;");
 
6
    if ($screen == 'ON' || $screen == 'on' || $screen == 'On') {
 
7
      echo $str.$result."<br>";
 
8
    }
 
9
    return $result;
 
10
  }
 
11
?>