Display field #3

This public forum is for user-to-user discussions of PHPMaker. Note that this is not support forum.
Post Reply
halexoliveira
User
Posts: 8

Display field #3

Post by halexoliveira »

On List page i need get the Disp3Fld how a picture. How?


mobhar
User
Posts: 11905

Post by mobhar »

Not sure what you want to achieve. Could you please explain us by giving an example for this?


halexoliveira
User
Posts: 8

Post by halexoliveira »

It´s ok now.

<?php $quebra = $corpo_diretivo->morador->ListViewValue(); ?>

<?php
$pieces = explode(",", $quebra);?>
<img src="upload/<?php echo trim($pieces[2]); ?>" width="180" alt="" /></br></br>
<?php
echo $pieces[0]; // piece1
echo ",";
echo $pieces[1]; // piece2
?>


Post Reply