Any idea how the statement would look for Revolution?
@SELECT pagetitle FROM modx_site_content WHERE parent = 3
Edit:
When looking at the Revo database. There is still a 'modx_site_content' table with the fields 'pagetitle' and 'parent' ... should still work?
Edit 2:
Made a touch of progress. When I use this:
@SELECT pagetitle FROM modx_site_content WHERE parent = 3
It outputs this:
<select id="tv9" style="width: 300px;" size="8" onchange="MODx.fireResourceFormChange();" multiple="multiple" name="tv9[]">
<option selected="selected" value=""/>
<option selected="selected" value=""/>
</select>
It is PROPERLY grabbing 2 <options> because that is how many elements there are under that parent. When I add an element, it grabs 3.
So, the challenge I am facing now is how to get it to grab the proper data and populate the <option> tags right.