close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

MySQLi version of a Dynamic Dropdown on an UPDATE form?

Thread began 7/22/2015 9:16 am by Nathon Jones Web Design | Last modified 8/27/2015 2:29 pm by Ray Borduin | 1023 views | 3 replies |

Nathon Jones Web Design

MySQLi version of a Dynamic Dropdown on an UPDATE form?

So when I try to select "Dynamic" for my dropdown menu, in my update form, the MySQLi recordset doesn't show as available. So, I created 2 recordsets - one MySQL, one MySQLi - and I the non-MySQLi recordset is available which, for my select field, gives me this:

<select class="form-control" id="BWnewsbutton" name="BWnewsbutton" tabindex="6">
<option value="1" <?php if (!(strcmp(1, $row_rsEDITNEWSalt['BWnewsbutton']))) {echo "selected=\"selected\"";} ?>>Contact Page</option>
<option value="2" <?php if (!(strcmp(2, $row_rsEDITNEWSalt['BWnewsbutton']))) {echo "selected=\"selected\"";} ?>>Windows Page</option>
<option value="3" <?php if (!(strcmp(3, $row_rsEDITNEWSalt['BWnewsbutton']))) {echo "selected=\"selected\"";} ?>>Doors Page</option>
<option value="4" <?php if (!(strcmp(4, $row_rsEDITNEWSalt['BWnewsbutton']))) {echo "selected=\"selected\"";} ?>>Conservatories Page</option>
<option value="5" <?php if (!(strcmp(5, $row_rsEDITNEWSalt['BWnewsbutton']))) {echo "selected=\"selected\"";} ?>>Get a Quote - Windows</option>
<option value="6" <?php if (!(strcmp(6, $row_rsEDITNEWSalt['BWnewsbutton']))) {echo "selected=\"selected\"";} ?>>Get a Quote - Doors</option>
<option value="7" <?php if (!(strcmp(7, $row_rsEDITNEWSalt['BWnewsbutton']))) {echo "selected=\"selected\"";} ?>>Get a Quote - Conservatories</option>
<option value="8" <?php if (!(strcmp(8, $row_rsEDITNEWSalt['BWnewsbutton']))) {echo "selected=\"selected\"";} ?>>Home Page</option>
</select>



Rather than have two recordsets on the page, where only one is required, what is the MySQLi version of the above?
Thank you.
NJ

Sign in to reply to this post

Ray BorduinWebAssist

Just replace:
$row_rsEDITNEWSalt['BWnewsbutton']

with:
$MySQLiRecordsetName->getColumnVal('BWnewsbutton')

everywhere it appears in that code chunk.

Sign in to reply to this post
Did this help? Tips are appreciated...

Nathon Jones Web Design

Thank you Ray.

is there a way to drop this into a repeat region? I've tried the following but, whilst it does give me a dynamic list it auto loads on the last value:

<?php
while(!$rsDISTILLERY->atEnd()) {
?>
<option value="<?php echo($rsDISTILLERY->getColumnVal("wbprodDISTID")); ?>" <?php if (!(strcmp($rsDISTILLERY->getColumnVal("wbprodDISTID"), $rsDISTILLERY->getColumnVal("wbprodDISTID")))) {echo "selected=\"selected\"";} ?>><?php echo($rsDISTILLERY->getColumnVal("wbprodDISTILLERY")); ?></option>
<?php
$rsDISTILLERY->moveNext();
}
$rsDISTILLERY->moveFirst(); //return RS to first record
?>
Sign in to reply to this post

Ray BorduinWebAssist

In the code that sets the selection you are comparing the value to itself:

<?php if (!(strcmp($rsDISTILLERY->getColumnVal("wbprodDISTID"), $rsDISTILLERY->getColumnVal("wbprodDISTID")))) {echo "selected=\"selected\"";} ?>

one of those two recordsets should be the updated recordset used to populate the form and not the repeated one.

Sign in to reply to this post
Did this help? Tips are appreciated...

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...