Jump to content

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

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.