vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   browser check (https://vborg.vbsupport.ru/showthread.php?t=46119)

caislander 11-26-2002 04:44 AM

browser check
 
Hi,

I need to add a browser check to forumhome template so I can serve a different header based on browser (specificaly I need to serve a watered down ver of our header if they have NS 4.xx) so I tried adding this the the template
PHP Code:

<?php
function doriteheader() {
    
// serve correct header by browser
    
global $HTTP_USER_AGENT;

    if (
eregi("Mozilla/4.",$HTTP_USER_AGENT)) { // browser is NS4
        
return "$footer";

    } else { 
// other browsers
        
return $header;

    }

}
?>

and all that seems to do is display the footer (I used footer in place of my second header so it was easy to see if this worked or not) then some of the php was displayed as plain text then a header. So obviously I did something wrong (so what's new) can someone help me get this correct?

Thanks for your time :)

Velocd 11-27-2002 09:30 PM

The moderators here usually aren't in favor of members posting their questions in multiple forums, so I would try sticking to just one.

You will probably have more support in this thread:
https://vborg.vbsupport.ru/showthrea...threadid=46143


All times are GMT. The time now is 08:15 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.00933 seconds
  • Memory Usage 1,712KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (2)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete