Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #72.8K
~241 People Reached
Favorite Forums
Web Development x 2
1 Posted Topic
My php code to populate drop downs look like this: <head> <title>STOCKINSERT</title> <?php session_start(); $conn = new mysqli('localhost', 'root', 's', 'smv') or die ('Cannot connect to db'); $result = $conn->query("select code, name from itemname"); $hvo = $conn->query("select code, name from hvomaster where TYPE=1"); $spoke = $conn->query("select code, name from hvomaster … |
The End.