Jump to content

Reading contents of a PHP array into well presented HTML output


Beedy555

Recommended Posts

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]

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.