-
[RESOLVED] mysql help
i have a login/register working with db in a folder called working and a website in a folder called site
i was to make a html document member page so people can see who register on the site how would i do that i know the database name ect jutst need the code
cany anyone help
-
Re: mysql help
Here is an intro to PHP+ MySQL.
If you have issues with the tutorial we can help you, but we tend to help those who have a coding attempt to show.
http://www.php-mysql-tutorial.com/wi...-database.aspx
-
Re: mysql help
thats the think i know html just not mysql lool
-
Re: mysql help
you need to make a table in the database to store the users in, and to view users you can use the command:
Code:
SELECT * FROM <tablename> WHERE <clauses>
the file executing this command also needs to be a PHP file, not an HTML file. the link posted above shows the basics of how to use MySQL with PHP (and has nothing to do with HTML), so you may want to actually read through it..