Hello
I need to get the info from CB which is saved in the Database - how do I do this?
The plugin I used before CB fixed the problem like this:
Code:
foreach ($rows3 as $row3) {
if($row3->key == "MOBIL_TLF")
$tlf = $row3->value;
if($row3->key == "ADRESSE")
$adresse = $row3->value;
if($row3->key == "LAND")
$land = $row3->value;
if($row3->key == "POSTBY")
$postby = $row3->value;
if($row3->key == "HJEMMESIDE")
$hjemmeside = $row3->value;
if($row3->key == "OPDRAET_STAMNAVN")
$stamnavn = $row3->value;
}
The info I need is listed like this
user id - firstname - middlename - lastname - cb_opdrtstamnavn - cb_beskrivelseafopdrt -cb_gadenavn_nummer - cb_postnummer_by - cb_hjemmeside
The above info were previously listed under "key" and not in one line.
Can anyone help me?
Kind Regards