I have deleted my previous post. Thnaks for your suggestion.
well, i ll try to do whatever you have suggested to me. well, your
code is working on IE6.
so, my be there must be some conflict between JS or this file

i will try and let you know tomorrow.

Thanks a lot for being patient with me. :)


On Aug 20, 5:37 pm, cbolson <[email protected]> wrote:
> Can you confirm whether or not you are able to see me demos correctly
> in your IE6?
>
> I don't think that it is a good idea to post all that code, especially
> the db stuff - I suggest you delete that last message or edit it if
> you can.
> The only code that is interesting for this group is the "source
> code" (ie what is outputted to the browser) - not the php etc.
>
> Other than that, you may have a problem (conflict) in the functions.js
> file.
> You are still including both the
> mootools-1.2.3.1-more.js and the mootools.svn.js  - you shouldn't have
> both.
>
> Also, probably not related but, you should load the css and define the
> styles BEFORE all js code. (files and inline code).
> This is mainly because various style sheets can be loaded at the same
> time whereas javascript files are loaded one by one and, whilst being
> loaded, nothing else is able to be loaded.  This clearly slows down
> load time and may prevent things from happeing as you expect.
>
> Chris
>
> On Aug 20, 2:27 pm, Deepali <[email protected]> wrote:
>
> > Chris, i so sorry but i dont have that privilege. I am pasting here my
> > index page code it is almost same as my original index page.
> > here is my code
> > <?
>
> > if($_SERVER['REQUEST_METHOD'] == "POST"){
> > if($_POST['submit'] == "GO"){
> >  "this is post method";
> >   $username    =   $_POST['username'];
> >   $passwd          =   $_POST['passwd'];
> >   $redirectPage    =   $_POST['redirectPage'];
> >   if(($username != "") || ($passwd != "")){
> >  $err_msg = login();
> >   }else{
> >     $err_msg= "Please enter login/password.";
> >   }
>
> > }
> > }
>
> > else if($_SERVER['REQUEST_METHOD'] == "GET"){
>
> >   $blogtitle   = "";
> >   $feed        = "";
>
> > }
>
> > ?>
> > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
> > "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
>
> > <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en-US" lang="en-
> > US">
> > <head>
> > <meta http-equiv="content-type" content="text/html; charset=utf-8" />
>
> > <script type="text/javascript" language="javascript" src="<?=
> > $retpath;?
>
> > >/includes/functions.js"></script>
>
> > <link rel="stylesheet" href="includes/adda-index.css" type="text/
> > css" /
>
> > <link rel="stylesheet" href="<?=$retpath;?>/includes/adda3.css"
> > type="text/css" media="screen" />
> > <style type="text/css" media="screen">@import "/ib/jw_ts/
> > tabs_slides.css";</style>
> > <style type="text/css" media="print">.jwts_tabbernav{display:none;}</
> > style>
> > <style type="text/css" media="screen">@import "/ib/jw_ts/
> > tabs_slides.css";</style>
> > <style type="text/css" media="print">.jwts_tabbernav{display:none;}</
> > style>
> > <!-- <script type="text/javascript">var jwts_slideSpeed=30; var
> > jwts_timer=10;</script>
> > <script type="text/javascript" src="<?=$retpath;?>/jw_ts/
> > tabs_slides_comp.js"></script>
> > <script type="text/javascript" src="<?=$retpath;?>/jw_ts/
> > tabs_slides_def_loader.js"></script>
> >  -->
> > <? require("simplepie/simplepie.inc");?>
> > <script type="text/javascript" src="<?=$retpath;?>/mootools-1.2.3.1-
> > more.js"></script>
> > <script type="text/javascript" src="<?=$retpath;?>/mootools-1.2.3-
> > core.js"></script>
> > <script type="text/javascript" src="<?=$retpath;?>/mootools.svn.js"></
> > script>
> > <style type="text/css">
> > body{font-family:Arial, Helvetica, sans-serif; font-size:13px;}
> > /* -------------------------------------------------------- */
> > /*
> > BUTTON
> > */
> > .button{
> >         background:url(img/button.png)  -32px right no-repeat;
> >         color:#FFFFFF;
> >         clear:both;
> >         display:block;
> >         float:left;
> >         font-size:13px;
> >         font-weight:bold;
> >         height:31px;
> >         line-height:31px;
> >         width:auto;
> >         margin-right:30px;
>
> > }
>
> >         a.button {
> >                 text-decoration:none;
> >         }
> >         .button span {
> >                 background:url(img/button.png) left top no-repeat;
> >                 display:block;
> >                 height:31px;
> >                 line-height:31px;
> >                 padding-left:10px;
> >                 padding-right:8px;
> >                 margin-right:20px;
> >         }
> > /* -------------------------------------------------------- */
> > /*
> > MENU
> > */
> > .v-menu{
> >         border:solid 1px #7F9FBF;
> >         width:200px;
> >         clear:both;
>
> > }
>
> > .hidden{display:none;}
>
> >         ul.v-menu, .v-menu li{
> >                 padding:0;
> >                 margin:0;
> >                 list-style:none;
> >         }
> >         ul.v-menu{
> >                 clear:both;
> >                 margin-top:6px;
> >                 padding:6px 10px;
> >         }
> >                 .v-menu li a{
> >                         color:#555555;
> >                         font-weight:bold;
> >                         display:block;
> >                         border-top:solid 1px #DEDEDE;
> >                         padding:4px;
> >                         text-decoration:none;
> >                 }
> >                 .v-menu li a:hover{
> >                         color:#999999;
> >                 }
>
> > </style>
>
> > <!-- Mootools -->
> > <script type="text/javascript">
> >                 window.addEvent('domready', function(){
> >                         //-vertical
> > var mySlide = new Fx.Slide('v-menu2').hide();
> > $('v-menu2').removeClass('hidden');
>
> >         $('toggle').addEvent('click', function(e){
> >                 e = new Event(e);
> >                 mySlide.toggle();
> >                 e.stop();
> >         });
>
> > });
>
> > </script>
> > </head>
> > <?if(!$userid){?>
> > <body id="free">
> > <?}else{?>
> > <body>
> > <?}?>
> > <div id="wrapper">
> > <div id="header">
> > <div id="logo">
>
> > </div>
> > <div id="topImage">
> > <img src="<?=$retpath;?>/images/who_ru_reading_img.jpg" width="200"
> > height="30" alt="who are you reading today?" />
> > </div>
> > <div id="<? if(!$userid){echo "navTop";}else{echo "topNav";}?>">
>
> > <? include("templates/login2.tpl"); ?>
>
> > <ul><?if(!$userid){ ?>
> > <?=$navlogin;?>
>
> > <li><a href="/register" title="Register" <?=classkey("Register",
> > $classtitle);?> >Register</a></li>
>
> > <?}else{?>
> > <?=$navlogin;?>
> > <li><a href="/myaccount" title="My Account" <?=classkey("Myaccount",
> > $classtitle);?> >My Account</a></li>
> > <?}?>
> > <li><a href="/tags" title="Tags" <?=classkey("Tags",$classtitle);?>
>
> > >Tags</a></li>
>
> > <li><a href="<?=$retpath;?>/" title="Home" <?=classkey("Home",
> > $classtitle);?> >Home</a></li>
> > </ul>
> > </div>
>
> > </div><!--  Header ends -->
> > <?php
> > $feed = new SimplePie();
> > $feed->set_feed_url('admin/bannertag.xml');
> > $feed->init();
> > $feed->handle_content_type();
> > if ($feed->data) {
> >   $max = $feed->get_item_quantity(4);
> >   for($x = 0; $x < $max; $x++) {
> >      $item = $feed->get_item($x);
> > $bannertag[$x]=$item->get_title();
>
> > } }
>
> > $tagname=$bannertag[rand(0, 3)];
> > $top = "SELECT b.id, b.title, b.url,b.blogpath,a.username FROM
> > ".tbl_bloginfo." b,".tbl_author." a WHERE (b.author = a.id) AND
> > b.approve = 'Y' AND b.keywords like '%,$tagname,%' ORDER BY
> > b.title,b.updatedon";
> > $result = $op->runsql($top);
> > $total = mysql_num_rows($result);
>
> >  if(mysql_num_rows($result) > 0){
> > $y=0;
> >       while($row=$op->select($result)){
>
> >   $ids[$y]=$row['blogpath'];
> > $img[$y]=$row['url'];
> > $bloglink[$y]=$row['title'];
> > $y++;
> >       }
> >  $imagepath = array();
> >  $pos =array();
>
> > srand(time());
> > $arr = array();
> > while ( count($arr) < $total ) {
> > $x =mt_rand(1,$total);
>
> > $random = (rand()%$total);
> > if ( !in_array($random,$arr) ) { $arr[] = $random; }
>
> > }
>
> >  for($i=0;$i<3;$i++){
> >  if(preg_match("/http:\/\//", $img[$arr[$i]])){
> >          $img[$arr[$i]] = str_replace("http://";, "", $img[$arr[$i]]);
> >         }
> >         $pos[$i] = $img[$arr[$i]];
> >      if(preg_match("[\/|-]", $img[$arr[$i]])){
> >             $replace = array("/","-");
> >             $imagepath[$i] = $retpath."/snapshots/large/".str_replace
> > ($replace, "_", $img[$arr[$i]])."_s.jpg";
> >       }else{
> >         $imagepath[$i] = $retpath."/snapshots/large/".$img[$arr
> > [$i]]."_s.jpg";
> >     }
> >  }
> >    }else{
> >     echo "No result";
> >     }
> > ?>
> > <? include("templates/banner.tpl"); ?>
> > <div id="main-content">
> > <div class="left">
>
> > <div class="recentnessText">
> > <span><img src="images/icon_recentness.gif" width="20" height="16"
> > alt="Icon - Recentness" /></span><h2>Recentness</h2></div>
>
> > <div id="blogSnaps">
> > <div class="snap1"><a href="/blogs/<?=$ids[$arr[0]];?>/" title="<?=
> > $img
> > [$arr[0]];?>"><img src="<?=$imagepath[0];?>" width="143" height="107"
> > border="0" alt="<?=$img[$arr[0]];?>" /></a></div>
> > <div class="snap1"><a href="/blogs/<?=$ids[$arr[1]];?>/" title="<?=
> > $img
> > [$arr[1]];?>"><img src="<?=$imagepath[1];?>" width="143" height="107"
> > border="0" alt="<?=$img[$arr[1]];?>" /></a></div>
> > <div class="snap1"><a href="/blogs/<?=$ids[$arr[2]];?>/" title="<?=
> > $img
> > [$arr[2]];?>"><img src="<?=$imagepath[2];?>" width="143" height="107"
> > border="0" alt="<?=$img[$arr[2]];?>" /></a></div>
> > </div>
>
> > <div id="latestEntries">
> > <div><span><img src="images/icon_read_latest_entries.gif" width="20"
> > height="16" alt="Latest Entries from Indian Blogosphere" /></
> > span><h2>Read Latest Entries</h2></div>
> > <p class="latestText">updated every hour</p>
> > <?
> > $feed = new SimplePie();
> > $feed->set_feed_url($file);
> > $feed->init();
>
> ...
>
> read more »

Reply via email to