Posts by Davison Vinicius • 1 point
2 posts
-
-3
votes2
answers34
viewsA: How to get the name of another table when the Ids match?
Try it this way: $sql = "SELECT Name.Team, *.RecordByOpponent FROM `RecordByOpponent`, `Team` WHERE `TeamID` = " . $TeamID . " " AND `TeamID` = `ID`;
-
-2
votes2
answers96
viewsQ: Trigger function after change in input without Submit
Good morning/ Good afternoon/ Good evening Here is my problem: I need that as the user goes typing in the field my function is triggered, without need to give a Submit. I’m trying to use the change…