Jump to content

ribeiro

New Members
  • Posts

    2
  • Joined

  • Last visited

Posts posted by ribeiro

  1. 56 minutes ago, requinix said:

    You entered "j" and it's listing records with user containing "j". So I don't see what's wrong with that.

    Are you talking about getting all those duplicates? It's because you're joining the login and dados_user tables together without telling MySQL how to join them together.
    You need a query that looks like

    
    SELECT login.user, dados_user.nome_proprio
    FROM login
    JOIN dados_user ON login.??? = dados_user.???
    WHERE login.user LIKE '%$procura%' AND login.eliminado = 0

     

    Thank you so much it was actually that. I didn't know of JOIN , thank you for intruducing me to it aswell . Thank you so much :D 

  2. So basically my select is giving me results that I don't want , please take a look at it , if you can help me I would appreciate it thank you. :D

    image.png.0c74f7d2e77ebb5bb34613bbe9d10b65.pngimage.png.1c411605bc8fed2c45c99d7a0df8be1f.png

    Im searching for something with the letter j in it , be it the user or the nome_proprio row 

    image.thumb.png.e29676ed0002f69a5cde3ca03b8ef7ad.png

    it gives me this: 

    image.thumb.png.602e013fd6c57f906900be8847da54ff.png

    heres the code aswell 

    image.thumb.png.aaec5645663f8ac0cb4fb3f4fb360750.png

    As you can see I just want where user LIKE '$procura' , i had  the ,OR nome_proprio LIKE '$procura' , but it just gives more 

    posts come from here :

     

    image.png.c9922634fbe2b1a627c5c8f54b65d4fb.png

     

    If you need something more like the code itself , i can provide it :D

    Thank you for your time and help:D

×
×
  • 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.