Re: [PHP] Collecting Meta Tags and Traping Errors

2002-02-04 Thread Analysis and Solutions

Hi Philip:

Several problems...

 ?php
 $get_url = http://www.philipsdomain.com;;

Put a / on the end there.  Without it, you're not really hitting a page,
but rather a redirect to a page.


 $metatags= get_meta_tags($get_url,1);
 
 echo $metatags[Keywords];

The manual indicates that the key names are converted to lower case, so you
need to use keywords rather than Keywords.  Also, since they key name is
text, it's best to quote the key name.  So, rewrite the line like this:

   echo $metatags['keywords'];


 echo br;
 echo $metatags[Description];

Same principles apply here.

Enjoy,

--Dan

-- 
PHP scripts that make your job easier
  http://www.analysisandsolutions.com/code/
 SQL Solution  |  Layout Solution  |  Form Solution
 T H E   A N A L Y S I S   A N D   S O L U T I O N S   C O M P A N Y
 4015 7 Ave, Brooklyn NY 11232v: 718-854-0335f: 718-854-0409

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Collecting Meta Tags and Traping Errors

2002-02-04 Thread Philip J. Newman

Warning: get_meta_tags(http://www.philipsdomain.com/;) - No error in
d:\website\myphp\test01.php on line 5

even with the changes i get the error

?php

$get_url = http://www.philipsdomain.com/;;

$metatags = get_meta_tags($get_url,1);

echo $metatags['keywords'];

echo $metatags[description];

?


- Original Message -
From: Analysis and Solutions [EMAIL PROTECTED]
To: PHP List [EMAIL PROTECTED]
Sent: Tuesday, February 05, 2002 7:03 PM
Subject: Re: [PHP] Collecting Meta Tags and Traping Errors


 Hi Philip:

 Several problems...

  ?php
  $get_url = http://www.philipsdomain.com;;

 Put a / on the end there.  Without it, you're not really hitting a page,
 but rather a redirect to a page.


  $metatags= get_meta_tags($get_url,1);
 
  echo $metatags[Keywords];

 The manual indicates that the key names are converted to lower case, so
you
 need to use keywords rather than Keywords.  Also, since they key name
is
 text, it's best to quote the key name.  So, rewrite the line like this:

echo $metatags['keywords'];


  echo br;
  echo $metatags[Description];

 Same principles apply here.

 Enjoy,

 --Dan

 --
 PHP scripts that make your job easier
   http://www.analysisandsolutions.com/code/
  SQL Solution  |  Layout Solution  |  Form Solution
  T H E   A N A L Y S I S   A N D   S O L U T I O N S   C O M P A N Y
  4015 7 Ave, Brooklyn NY 11232v: 718-854-0335f: 718-854-0409

 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php







-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Collecting Meta Tags and Traping Errors

2002-02-04 Thread Analysis and Solutions

Hi Philip:

Philip J. Newman wrote:
 
 ?php
 $get_url = http://www.philipsdomain.com/;;
 $metatags = get_meta_tags($get_url,1);
 echo $metatags['keywords'];
 echo $metatags[description];
 ?

This code works perfectly for me, on an NT 4 machine using PHP 4.0.7 dev. 
Oh, perfectly, spare the fact that the page at
http://www.philipsdomain.com/; has absolutely no contents.

Try http://www.analysisandsolutions.com/; instead and see what happens.

Are you running into problems mentioned in the manual of unix v mac?  What
happens if you take out the ,1 in the get_meta_tags() call?

Enjoy,

--Dan

PS:  In the future, pleaes be kind enough to 1) just send emails to the list,
not to me and the list and 2) snip out content from the message you're
responding to.  Thanks.

-- 
PHP scripts that make your job easier
  http://www.analysisandsolutions.com/code/
 SQL Solution  |  Layout Solution  |  Form Solution
 T H E   A N A L Y S I S   A N D   S O L U T I O N S   C O M P A N Y
 4015 7 Ave, Brooklyn NY 11232v: 718-854-0335f: 718-854-0409

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php