Jump to content

Using returned values


livewirerules

Recommended Posts

how do i use the return values of a function to html tags.Below is my function

 

function nfo($id)
{

$feed=simplexml_load_file("feed.xml");

if (!$feed) {
trigger_error("There was an error",E_USER_ERROR);
}
$feedx[]=array(
'centrename'=>$feed->TNFO->NAME,
'l1'=>$feed->TNFO->LOCATION->L1,
'l2'=>$feed->TNFO->LOCATION->L2,
'code'=>$feed->TNFO->LOCATION->CODE
);

return $feedx;
}

 

i want to use the returned values in the below table in the location marked as XXXX.

 

<body>
<?php nfo('257');?>

<table width="200" border="1">
  <tr>
    <td>XXXX</td>
    <td>XXXX</td>
  </tr>
  <tr>
    <td>XXXX</td>
    <td>XXXX</td>
  </tr>
</table>
</body>

 

is it possible to return the values into the table without using the html tags in to the function?

 

Any help will be much appreciated

 

Thanks.

 

Link to comment
https://forums.phpfreaks.com/topic/190821-using-returned-values/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.