form dropdown.

Home Forums Quform WordPress form dropdown.

This topic is: resolved
Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #7310
    radacla
    Participant

    Hello, I wanted to know if it was possible to take the data entered in the database and place it in a form dropdown.
    thanks

    #7326
    Ally
    Support Staff

    You don't have permission to view this content. Please log in or register and then verify your purchases to gain access.

    #7330
    radacla
    Participant

    Yes, thank you, I tried but I would like to show all the fields in a table.
    this is what I added to myself.


    function enterreport_dynamic_dropdown_values($form)
    {
    $options = array();
    $dbc = mysqli_connect('localhost', 'xxxxxxx', 'xxx', 'bresaola_wor2');
    $query = "SELECT * FROM
    ukz_iphorm_form_entry_data`";
    $result = mysqli_query($dbc, $query);

    while ($row = mysqli_fetch_assoc($result)) {
    $options[] = array('label' => $row['CLIENTE'], 'value' => $row['CLIENTE']);
    }

    $dropdown = $form->getElement('iphorm_12_22');
    if ($dropdown instanceof iPhorm_Element_Select) {
    $dropdown->setOptions($options);
    }
    }
    add_action('iphorm_pre_display_12', 'enterreport_dynamic_dropdown_values');

    I would not only show the label and value, but all fields included in element_id.

    thanks Claudio

    • This reply was modified 10 years, 5 months ago by radacla.
    • This reply was modified 10 years, 5 months ago by radacla.
    #7343
    Ally
    Support Staff

    You don't have permission to view this content. Please log in or register and then verify your purchases to gain access.

    #7344
    radacla
    Participant

    Ok thanks solved, but if I wanted to retrieve data in a single line text how can I do?
    eg:
    Single line text 1 product
    Single line text product 2

    #7353
    Ally
    Support Staff

    You don't have permission to view this content. Please log in or register and then verify your purchases to gain access.

    #7354
    Ally
    Support Staff

    You don't have permission to view this content. Please log in or register and then verify your purchases to gain access.

    #7355
    radacla
    Participant

    Ok thanks solved

    Regards
    Claudio

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.
Be inspired. © 2024 ThemeCatcher Ltd. 20-22 Wenlock Road, London, England, N1 7GU | Company No. 08120384 | Built with React | Privacy Policy