1779 Posts in 582 Topics by 556 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1008 Views |
-
print db array in my template

19 December 2008 at 3:28am
hi!
I create a serch form: if the user write a word in the serch area, silverstripe look for in the db if that name exixt.
If name exixts I memorize in an array the name plus the other records in the database.
I can't print this array in my template.The function that create the arry return an array:
$records = DB::query('select nome, tipologia from ricercapollsubmission where tipologia='.$form_value['Tipo'].' limit 0,10 ');
while ($rec=$records->nextRecord())
{
$nuovo_rec = $rec;
}
return $nuovo_rec;I need to print in my template my result.
<? if(!empty($nuovo_rec))
{
?>
<div><? print_r($nuovo_rec); ?></div>
<?
}
?>but I can't print my data in template..
| 1008 Views | ||
|
Page:
1
|
Go to Top |

