Hey there 
Im having a few code issues that stem from what is going on in my mysql (phpmyadmin). I have a main table with my login/register and tried to connect other tables with INNER JOIN but things are not working. What am I doing wrong?
Thank ya 
Hey there 
Im having a few code issues that stem from what is going on in my mysql (phpmyadmin). I have a main table with my login/register and tried to connect other tables with INNER JOIN but things are not working. What am I doing wrong?
Thank ya 
Itâs impossible to help without some more info about what youâre doing. Can you post your db setup including table structure and some sample data, the query thatâs not working, and a description of what data you want returning?
Hey @skawid 
The DB image is all the tables Iâm using. Tbl_member is the main table(login/register). Trying to connect the other tables to it so when folks join their info flows within each.
The âWelcome Mekaâ & âAbout Meâ pics have issues that go with this line of code:
$posts = $con->query("SELECT p.*,concat(u.username) as name,u.profile_pic from posts p inner join users u on u.id = p.user_id where p.type = 0 order by unix_timestamp(p.date_created) desc");
while($row=$posts->fetch_assoc()):
The âManage Accountâ issue goes with this line of code:
$user = $conn->query("SELECT * FROM user where id =".$_GET['id']);
foreach($user->fetch_array() as $k =>$v){
$meta[$k] = $v;
}
Hope this helps 
If you can PM me an SQL dump of your DB I will take a look at it.
Based on the DB dump you sentâŚ
There is no table named posts, it is post. There is no column in the users table named profile_pic
Your DB design need some work. You are duplicating and triplicating data. For example, you have an email column in three different tables.
So what do I do? How to go about fixing things
You should probably start with learning Database Normalization.