CodeIgniter Forums
blank result - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: blank result (/showthread.php?tid=39889)



blank result - El Forum - 03-23-2011

[eluser]Evollution[/eluser]
Code:
{            
$reshome = $this->input->post('elo1');

in view file
<?php echo $reshome; ?>

and i get blank page but if i post:

<?php echo $this->input->post('elo1'); ?>
i get the correct result why?


blank result - El Forum - 03-23-2011

[eluser]Wondering Coder[/eluser]
change this:
Code:
$reshome = $this->input->post('elo1');

to this:
Code:
$data['reshome'] = $this->input->post('elo1');

in view
<?=$reshome?>