Hi all,
Here's my mySQL table structures:
Table "group"
gp_ID
gp_name
Table "dogs"
dog_name
dog_groupid
Now i want to make the webpage to return the name of the group a particular dog is place in.
If "dog_groupid" is matched "gp_ID",
the wepage will echo out "gp_name"
The thing is what php function should i use to get the above problem to be solve?
A code sample will be appreciate.
Thanks.