<?php require_once '/home/mysite/www/news/files.php'; CarpConfAdd('descriptiontags','|img'); CarpCacheShow('http://news.google.com/news?hl=en&ned=us&ie=UTF-8&q={WHAT CAN I PUT HERE TO GRAB META TITLE}&output=rss'); ?>
In the url http://news.google.com/news?hl=en&ned=us&ie=UTF-8&q=.. "q" parameter used for specifying query string (for example: http://news.google.com/news?hl=en&ned=us&ie=UTF-8&q=web+design). What do you mean by "META TITLE"?
If you mean the title of the web page, you need to set it as a variable. You then display that variable as the title and in your snippet. You may also need to convert spaces to plusses. For example: <?php $title = 'Principles of Web Design'; ?> <HEAD> <TITLE><?php echo $title;?></TITLE> </HEAD> <BODY> <H1><?php echo $title;?></H1> <?php $keywords = str_replace(' ', '+', $title); require_once '/home/mysite/www/news/files.php'; CarpConfAdd('descriptiontags','|img'); CarpCacheShow('http://news.google.com/news?hl=en&ned=us&ie=UTF-8&q=$keywords&output=rss'); ?> </BODY> HTML: Cryo.