Beedy555 Posted June 21, 2011 Share Posted June 21, 2011 Hi, i am working on a project, specifically displaying user comments on a logon dashboard, on a webpage. the following code prints all comments which have been made on an advert, and works as i can see output displaying the array information: <? $obj = new Data(); checkPanelLogin2(); $ads = $obj->get("ad","cid",$_SESSION['user_id'],"=","","",""); unset( $ads['num'] ); $ads_ids = array(); $resp = array(); foreach($ads as $ad){ $r = $obj->get("ad_respuesta","aid",$ad['id'],"=","","",""); print_r( $r ); foreach( $r as $_r) $resp[] = $_r; } print_r( $resp ); ?> my question is how can i convert the contents of these array into well presented html output formatted correctly so the comments are displayed down the page at the moment it looks like the screenshot i have attached. [attachment deleted by admin] Quote Link to comment https://forums.phpfreaks.com/topic/239965-reading-contents-of-a-php-array-into-well-presented-html-output/ Share on other sites More sharing options...
priti Posted June 21, 2011 Share Posted June 21, 2011 echo '<pre>'; print_r( $resp ); Hope this help Quote Link to comment https://forums.phpfreaks.com/topic/239965-reading-contents-of-a-php-array-into-well-presented-html-output/#findComment-1232711 Share on other sites More sharing options...
Beedy555 Posted June 23, 2011 Author Share Posted June 23, 2011 thanks this did Quote Link to comment https://forums.phpfreaks.com/topic/239965-reading-contents-of-a-php-array-into-well-presented-html-output/#findComment-1233790 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.