i have to fetch some data from a web page. i want to use phpQuery for that.when i try for the example

require_once('phpQuery/phpQuery.php');
phpQuery::browserGet('http://www.google.com/', 'success1');
function success1($browser) {
  $browser
    ->WebBrowser('success2')
    ->find('input[name=q]')
      ->val('search phrase')
      ->parents('form')
        ->submit();
}
function success2($browser) {
  print $browser;
}

i got a error message like

Fatal error: Class 'phpQuery' not found in /var/www/TantraProjects/Testing/pregmatch.php on line 4 

i cant know that is phpQuery class not exist or something else.

link|improve this question

0% accept rate
Where is phpQuery.php saved? It must be in include_path – Michael Dec 19 '11 at 12:24
feedback

1 Answer

This clearly is a problem where the php engine is not able to find your phpQuery file. So the problem is in

 require_once ('phpQuery/phpQuery.php'); 

line. Is phpQueryfolder in the Testing Folder or TantraProjects folder? If latter, change:

 require_once '../phpQuery/phpQuery.php';
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.