Hey guys - I am the owner of a website and would like to make some adjustments to one of the pages. Though I didn't build it, I've been spending a lot of time in cPanel's "File Manager" and have already been able to make a variety of successful changes from there (always backing up before I do, of course). What I would like to do now is change the order of the items found in a drop-down menu that a customer selects when signing up. But looking in the File Manager > Public HTML files for the site, I can't find a way to do it.
Below is what the HTML code looks like for that page and that section. It seems to be referencing a list from somewhere else (the items in the drop-down menu don't appear here). Can anyone help me locate them?
(P.S. I understand some of you may suggest contacting the web design team to fix this. But I am trying to learn as much as I can about cPanel / HTML editing, so any guidance would be greatly appreciated.) THANK YOU!
CODE:
<td>How Did You Here About Us<br />
<div class="options2">
<select name="how_did_you_here_about_us">
<option value="">on...</option>
<?php foreach (getListOptions('members', 'how_did_you_here_about_us') as $value => $label): ?>
<option value="<?php echo htmlspecialchars($value); ?>" <?php selectedIf(htmlspecialchars($value), htmlspecialchars(@$_REQUEST['how_did_you_here_about_us'])); ?> >
<?php echo htmlspecialchars($label); ?>
</option>
<?php endforeach; ?>
</select>
</div>
</td>