livewirerules Posted February 3, 2010 Share Posted February 3, 2010 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 More sharing options...
aeroswat Posted February 3, 2010 Share Posted February 3, 2010 nevermind i didn't read Link to comment https://forums.phpfreaks.com/topic/190821-using-returned-values/#findComment-1006286 Share on other sites More sharing options...
wildteen88 Posted February 3, 2010 Share Posted February 3, 2010 To grab values returned from a function, assign the function to a variable when you call it. For example $feed = nfo('257'); printf('<pre>%s</pre>',print_r($feed,true)); For more information read this Link to comment https://forums.phpfreaks.com/topic/190821-using-returned-values/#findComment-1006291 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.