Document support for address lookup
[infodrom.org/www.infodrom.org] / Styles / phptools.inc
1 <define-tag browser_with_tables>
2 <?
3   # 1: Browser does tables
4   # 0: Browser does not (lynx, w3m, links)
5   function browser_with_tables()
6   {
7     global $HTTP_USER_AGENT;
8
9     $agent = " " . $HTTP_USER_AGENT;
10
11     if ((strpos ($agent, "Lynx") > 0)
12      || (strpos ($agent, "w3m") > 0)
13      || (strpos ($agent, "Links") > 0)) {
14       return 0;
15     } else {
16       return 1;
17     }
18   }
19 ?>
20 </define-tag>