Jump to content

two tables problem


web_master

Recommended Posts

Hi,

 

I got a problem with two tables. There is a one with users, and the other is with logs of the users.

 

USERS table

- ID

- name

 

LOGS table

- ID

- users_ID

- log_datetime

 

I want to list this tables like this

Name 1

- log_datetime

- log_datetime

- log_datetime...

 

Name 2

- log_datetime

- log_datetime

- log_datetime...

 

Name 3

- log_datetime

- log_datetime

- log_datetime...

 

So, every names just one time, and below every log belong to that name...

 

Thanks..

 

T

Link to comment
https://forums.phpfreaks.com/topic/246790-two-tables-problem/
Share on other sites

in your case it sounds like you will want to use a JOIN query..

For information on using a JOIN query, look here

 

Yes, I want to JOIN tables, thats OK, but after JOIN when I list its looks like this:

 

Name 1

- log 1

Name 1

- log 2

Name 1

- log 3

 

Name 2

- log 1

Name 2

- log 2

Name 2

- log 3 ....

Link to comment
https://forums.phpfreaks.com/topic/246790-two-tables-problem/#findComment-1267380
Share on other sites

can you post the relevant query code please

 

$Querylog = mysql_query(' SELECT

p_users.p_users_id,

p_users.p_users_nick,

p_users_log.p_users_log_id,

p_users_log.p_users_log_user,

p_users_log.p_users_log_datetime

FROM

p_users

Inner Join p_users_log ON p_users.p_users_id = p_users_log.p_users_log_user

ORDER BY `p_users_log_user` ASC ');

if(!$Querylog){ echo mysql_error(); exit; }

while($request_log = mysql_fetch_array($Querylog)) {

 

}

Link to comment
https://forums.phpfreaks.com/topic/246790-two-tables-problem/#findComment-1267387
Share on other sites

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.