User Profile

Collapse

Profile Sidebar

Collapse
empk
empk
Last Activity: Apr 24 '10, 12:24 PM
Joined: Feb 4 '10
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • empk
    started a topic Overlapping sub-levels in CSS dropdown menu

    Overlapping sub-levels in CSS dropdown menu

    Hi,
    I've written a code for css drop-down menu which has 3 sub-levels. But I find that the 3rd sub-levels are overlapped. My code is as under.

    Code snippet
    *************** **
    Code:
    <li><a class="hide" href="#nogo" title="Query ">QUERY &gt;<!--[if gte IE 7]><!--></a><!--<![endif]--> 
            <!--[if lte IE 6]><table><tr><td><![endif]--><ul>
    ...
    See more | Go to post
    Last edited by Dormilich; May 2 '10, 10:55 AM. Reason: Please use [code] tags when posting code

  • passing the result of a click on hyperlink to another page in php

    I have a mysql table result displayed in 3 columns viz., "name", "amount" and "days" in a page, mainly a summary page. The contents of the first column "name" is displayed as a hyperlink which when clicked will show the details for that particular person. Though this link works fine, the result obtained is for all the persons instead of it being filtered to show details of only a single person. Now is there...
    See more | Go to post

  • Dear johny10151981,
    Your solution was the best and it went through as a whistle. I substituted the line no. 9 with *print "<option value=\"$row[1]\">$row[1]</option>";*
    Thanks a lot mate.
    See more | Go to post

    Leave a comment:


  • Thanks one and all for your help.
    See more | Go to post

    Leave a comment:


  • Dear Atli,
    the code used by me for display of the drop down is as under.

    Code:
    $qry2=mysql_query("select * from BORW_MAST order by nam");
    
    <font color=brown>Name :
    <select name=nam>
    
    <?php
    print "<option value=''></option>";     
        while($row=mysql_fetch_row($qry2))
        {print "<option value=$row[1]>$row[1]</option>";
    ...
    See more | Go to post
    Last edited by Dormilich; Feb 22 '10, 05:18 AM. Reason: Please use [code] tags when posting code

    Leave a comment:


  • empk
    started a topic Data truncated on passing a value from a drop down menu.
    in PHP

    Data truncated on passing a value from a drop down menu.

    I've a table where in a column is defined as nam char(75) default null. Let us say the name is 'American Bush'. The name is picked up from the table and displayed correctly in the dropdown menu in the form. But when it is passed on to another mysql table, the data is truncated as 'American' only. The second part of the string 'Bush' is truncated. If the two words of the string is concatenated with either an underscore or a full-stop or a dash,...
    See more | Go to post
No activity results to display
Show More
Working...