HELP ME PLZZZZZ ((:
Lanet Tablolar (Firefox)
8
●920
- 16-06-2006, 13:24:10indexi
<?php include "themeconfig.php"; include "themefunctions.php"; ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//TR" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html> <head> <title> [sitetitle] - [pagetitle] </title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta name="keywords" content="[metakey]" /> <meta name="description" content="[metadesc]" /> <meta http-equiv="cache-control" content="no-cache" /> <script type="text/javascript"> <!-- function popup(URL, ww, wh) { day = new Date(); id = day.getTime(); eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width="+ww+",height="+wh+",left = 40,top = 40');"); } // --> </script> <link rel='stylesheet' type='text/css' href='[themedir]style.css' /> </head> <body><center> <div class='container'> <?php include "header.php"; ?> <?php include "categoriesmenu.php"; ?> <div class='columnsection'> <?php if (is("home")) { include "home.php"; } else if (is("register")) { include "register.php"; } else if (is("login")) { include "login.php"; } else if (is("comment")) { include "comment.php"; } else if (is("profile")) { include "profile.php"; } else if (is("category")) { include "category.php"; } else if (is("author")) { include "author.php"; } else if (is("game")) { include "game.php"; } else if (is("play")) { include "play.php"; } else if (is("links")) { include "links.php"; } else if (is("page")) { include "page.php"; } else if (is("news")) { include "news.php"; } else if (is("newsitem")) { include "newsitem.php"; } else if (is("users")) { include "users.php"; } else if (is("search")) { include "search.php"; } else if (is("taf")) { include "taf.php"; } else if (is("frame")) { include "frame.php"; } else if (is("submit")) { include "submit.php"; } else if (is("pm")) { include "pm.php"; } else { include "error.php"; } if (!is("play") && !is("frame")) { ?> </div> </div> <div class='footer'> <?php include "footer.php"; ?> </div> </center></body> </html> <?php } ?> - 16-06-2006, 13:27:22Burda bişi buldum bunla bişiler yapilabilirmi ?

function the_browser() { $browser = 'Firefox'; if (strpos($_SERVER['HTTP_USER_AGENT'], "MSIE") !== false) { $browser = 'IE'; } if (strpos($_SERVER['HTTP_USER_AGENT'], "Opera") !== false) { $browser = 'Opera'; } if (strpos($_SERVER['HTTP_USER_AGENT'], "Firefox") !== false) { $browser = 'Firefox'; } return $browser; } - 16-06-2006, 14:51:59http://validator.w3.org/ sitenin kodlamasını buradan kontrol edersen ve standartlara uygun hale getirirsen her browserda sorunsuz açılır
- 16-06-2006, 16:01:27

