17488 Posts in 4473 Topics by 1978 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1059 Views |
-
problem with redirect data to an other page

27 November 2008 at 11:51pm
Hi!
my problem is redirect the content of my query in a different page. in my template I put $doRicerca, I try also con $arra_data but nothig change
and my function is:function doRicerca($data, $form) {
if(!empty($data['nome']))
{ $form_value = array('Nome' => $data['nome'], 'Tipo' => $data['tipologia']);
}
//var_dump($form_value['Nome']);var_dump($form_value['Tipo']);die;
$array_data = "";
$records = DB::query('select nome from ricercapollsubmission where tipologia='.$form_value['Tipo'].' limit 0,10 ');
while ($rec=$records->nextRecord()) {
if($rec['nome'] != null)
$array_data .= $rec['nome'].'<br/> ';}
return $this->customise($array_data)->renderWith(array('SearchPage_results', 'Page'));}
-
Re: problem with redirect data to an other page

28 November 2008 at 12:16am
ok, I solve in this way:
return $this->customise(array('Link'=>$array_data))->renderWith(array('SearchPage_results', 'Page'));
and i put $Link in my page.
Now I want print my data in a div..every data in one div..can you help me?if i write
<div id="dimensione">
$Link
</div>
the data are in the same div
| 1059 Views | ||
|
Page:
1
|
Go to Top |

