Search Result

Collapse
9 results in 0.0040 seconds.
Keywords
Members
Tags
urgent
  •  

  • Can you tell me the command to check the stack

    can u tell me the command to view stack in core dump.
    I am getting core dump because of some ealier code issue.
    I am using GDB.

    Please tell me the command to view the content of stack so that I can reach to core dump issue.
    See more | Go to post

  • How to get products from categories in magento?

    I want to display all the products from the individual categories. I am putting my code here that what i have done so far.

    Code:
    <?php
    	$_main_categories = $this->getStoreCategories();
    	
    	foreach ($_main_categories as $_main_category):
    ?>
    		<li>
    			<div style="width:593px;">
    			<?php
    				$_products = $_main_category->getProductCollection();
    ...
    See more | Go to post
    Last edited by Kaushal Elsner; Jun 24 '11, 09:29 AM. Reason: Error reporting not mentioned.

  • I need my php to call certain parts of a table from mysql

    I have a html code writtin which calls a php page.(this much works perfectly).

    In the html the user has a choice of 5 artists from a drop down menu.
    When the choose the artist I want it to call the details for that artist from mysql.

    In mysql:
    Table name in database:Tracks .
    Column 1 in table: album_number
    Column 2 in table: track number
    column 3 in table: track_title

    ...
    See more | Go to post

  • Kaushal Elsner
    started a topic How to append a content into div?

    How to append a content into div?

    I have actually used...
    document.getEle mentById('div_1 23').innerHTML += content;
    but sometimes a content added goes down & in place of that another content comes.

    example- if I add in a div_123 2 contents:
    1)abcde - very first time
    2)xyz - second time

    but sometimes div_123 displays:
    xyz
    abcde

    actually it should be like:
    abcde
    xyz

    ...
    See more | Go to post

  • Kaushal Elsner
    started a topic How to put scroll in a div?

    How to put scroll in a div?

    I want verticle scroll in a div.
    See more | Go to post

  • How to skip reading of a content of a particular tag in xml file using php?

    Suppose this is an XML file.
    Code:
    <subject>Inquiry</subject>
    <message>
     <![CDATA[
       <div>Hi</div>
       <div>Hello</div>
       <div>How Are You</div>
     ]]>
    </message>
    My logic to read this xml file using php is...
    Code:
    $xml = simplexml_load_file("xml_mail_format2.xml");
    foreach($xml->children()
    ...
    See more | Go to post

  • buddyfoeva
    started a topic How to store grid layout in array?
    in C

    How to store grid layout in array?

    ok i need to code a game that has a rows and cols place in an array with every 5th one be a + with every other one using a period like this
    ............... .....
    ............... .....
    ............... .....
    ............... .....
    ....+.........+ .....
    ............... .....
    ............... .....
    ............... .....
    ............... .....
    ....+.........+ .....

    i can get that...
    See more | Go to post

  • Can't get Report to show data from records based on a Form's Combo Box choice.

    I am completely new to access programming let alone VB. But I got pretty far with some help from the main programmer.. However I'm trying to introduce a new feature to the database which is basically this:

    1) Make selection of "Symptom" from the "Patient" table via Combo box on the form.

    2) Click a button on the form to open the report "Patient PD Report" showing details of all recorded...
    See more | Go to post

  • jimmy spearman
    started a topic Java command passing args, help?
    in Java

    Java command passing args, help?

    Code:
    public class Echo {
        public static void main (String[] args) {
            for (String s: args) {
                System.out.println(s);
            if (args[2] == "help"){
    			System.out.println("help");
    			}
    		}
        }
    }
    im just simply testing to see if the first argument is equal to "help" your help is much appreciated.
    See more | Go to post
Working...