seo search terms module
Suggestions
The problem is that it's not consistent - that's why I recommended Google Analytics - it will have that data for you.
updated by @brian: 01/19/19 07:47:31AM
function view_myCustomModule_default($_post, $_user, $_conf)
{
switch ($_post['option']) {
case 'my-custom-module-page-houston':
case 'my-custom-module-page-chicago':
case 'my-custom-module-page-new-york':
$_data = jrCore_db_get_item_by_key('myCustomModule', 'mod_page', $_post['option']);
if (!$_data || !is_array($_data)) {
$_data = array('mod_page' => $_post['option']);
jrCore_db_create_item('myCustomModule', $_data);
}
return jrCore_parse_template('my-custom-module-page.tpl', $_data, 'myCustomModule');
break;
}
}