Support Forums
VB.NET MySql , Help please - Printable Version

+- Support Forums (https://www.supportforums.net)
+-- Forum: Categories (https://www.supportforums.net/forumdisplay.php?fid=87)
+--- Forum: Coding Support Forums (https://www.supportforums.net/forumdisplay.php?fid=18)
+---- Forum: Database Programming (https://www.supportforums.net/forumdisplay.php?fid=28)
+---- Thread: VB.NET MySql , Help please (/showthread.php?tid=14483)



VB.NET MySql , Help please - booterphhp - 12-12-2010

Ok so I made a login BUT I want to get info about the person(like male are female) , how would i get the info from the server?

Please help thank you , BOOTERPHHP


RE: VB.NET MySql , Help please - Strafeness - 01-19-2012

You can try to do this with PHP and HTML. Just make a simple HTML page, and select the users from the database. Let your program navigate to that url, and your done. If you need any help, please let me know.


RE: VB.NET MySql , Help please - RainbowDashFTW - 03-19-2012

Use a SELECT query.
Example: SELECT * FROM *inserttablename* WHERE id=*insertid*.

Then, convert what it returns into an array and select from there.

Hope this helped Smile