Jump to content

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]

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.