I though I could give it a try...
Well I had problems finding people who could help at all. So I am back, I coded my own php script this time. Looks nothing like fusion because it is NOT, just look at it. Elite Hacks I was also wondering if anyone could hack the login box (hit enter to get to it), if you can please tell me how.
[[Richo fixed url tag]]
yeah just so you know your missing a '>' in your form
<form action="main.php" METHOD="POST">
Password: <input type='text' name='pass'>
<input type='submit' value='<ENTER>'
</form>
should be
<form action="main.php" METHOD="POST">
Password: <input type='text' name='pass'>
<input type='submit' value='<ENTER>'>
</form>```
look, you can't just "hack a login box". you can exploit the underlying code, however. show us the php source to the page if you're really worried, unless the password is hardcoded into the page, in which case there's really no point.
Afterthought: The only thing I can really see wrong with it is that you're only providing a single key for authentication, which means it could be bruteforced pretty fast.
masta_hacks wrote: Does anyone know how to get the database to remember what users exist and then when they click <login> it will check the database and see if credentials exist (Please tell me if you do not understand what I mean, I am not real sure what its called)?
Google about the basics of a mysql login and such and browse php.net for some ideas ;) You can always PM me for some sample code.