Quote:
Originally Posted by Corsec
array(2) {
[1]=>
string(4) "Club"
[2]=>
string(8) "Helsinki"
}
|
Thanks, man! Glad to hear I'm getting there - even if by small steps

Now... I still wonder how to formulate
string (4) "Club" and
string(8) "Helsinki" so it appears dynamically in the final output?
Quote:
array(2) {
[1]=>
$bbinfo['calendarfield1']
[2]=>
$bbinfo['calendarfield2']
}
|
perhaps?
This is the code outlining also the problematic, still missing variables
PHP Code:
$limit_page1 = '1'; // Enter the number of maximum events you want to have displayed
$get_events = DB_site->query ("SELECT `eventid` , `userid` , `title` , `customfields` , `dateline_from`
FROM `" . TABLE_PREFIX . "event`
WHERE userid = '$userinfo[userid]'
ORDER BY `dateline_from` DESC
LIMIT $limit_page1");
while($events = $DB_site->fetch_array($get_events))
{
exec_switch_bg();
$events['date'] = vbdate($vboptions['dateformat'],$events['dateline_from']);
// THE PROBLEM
// how to formulate the customfields based variables ?
// Below should be pulling clendar customfield id 1
$events['type'] = ' ';
// Below should be pulling clendar customfield id 2
$events['location'] = ' ';
eval('$usersevents .= "' . fetch_template('memberinfo_usersevents') . '";');
}
Now my problem only seems to be how to implement the above offered snippet into
$events['type'] = ' '; and
$events['location'] = ' ';
Once again... Thank's for any insight.
-Mika