[PHP]AngryCat's Login & Profile Script[DEV]

Junior Spellweaver
Joined
Jun 17, 2007
Messages
116
Reaction score
1
Okey, so I'm Making a Login & Profile script.. But i need some ideas to what i can add to it,,
It's coded mostly in php but something are html..

*CURRENT FEATURES*

- Login (100%)

- Logout (100%)


- Members List (30%)
- Avatar
- Username
- Website


- Profile (50%)
- Change Password
- First & Last Name
- Mail
- Website
- Avatar


- Forgot Password (100%)

- Registering (50%)

- Install (50%)


*something aren't 100% because i need more ideas on them*

Somebody got ideas?
 
Last edited by a moderator:
Re: [DEV]AngryCat's Login & Profile Script[DEV]

internett.. you can integrate it to every website..
Essentially all you need is 2 pages and some sql data to call into them.

I was thinking of doing a similar thing. Make modules that can be integrated into a site such as several API's, blogs, forums, etc. I get bored and start coding things =)

Best of luck, I would suggest an addon system. Where you can load things from xml I have a basic one made but it's fairly slow at processing, I'm not very good with xml->php. I found it was easier for me just to make my own coding system and have it process and create new php files.
 
Re: [DEV]AngryCat's Login & Profile Script[DEV]

I've come pretty far but all i need is ideas right now..

:::EDIT:::

If you want to see my progress look av this site
 
Last edited:
Getting a parse error on that link.

Look likes a nice idea :). Perhaps add user statistics ;), using GD lib you can make some nice pictures :). Do you have CAPTCHA available in the registration script? And email verification?
 
Getting a parse error on that link.

Look likes a nice idea :). Perhaps add user statistics ;), using GD lib you can make some nice pictures :). Do you have CAPTCHA available in the registration script? And email verification?

I'll check the parse error ;)
hmm.. can see what i can code :P I'm not that good in MySQL Connected things yet..

I Don't have CAPTCHA or email verification,, i forgot it xD thx for reminding me

:::EDIT:::
Parse error fixed! Pretty sure that everything else works :)
 
Last edited:
Getting a parse error on that link.

Look likes a nice idea :). Perhaps add user statistics ;), using GD lib you can make some nice pictures :). Do you have CAPTCHA available in the registration script? And email verification?
If not I have some ones I've made. The email verification requires a linux host server though and of course the catchpa needs Gd libraries enabled.
I'm making a registration system of my own right now and I'm having stupid difficulties lol
- Walks off to make post -
 
If not I have some ones I've made. The email verification requires a linux host server though and of course the catchpa needs Gd libraries enabled.
I'm making a registration system of my own right now and I'm having stupid difficulties lol
- Walks off to make post -

Yeah I made this stuff twice, but dedicated to the site. What problems? ^^
 
Yeah I made this stuff twice, but dedicated to the site. What problems? ^^
Just now fixed it =)
One of my inputs wasn't in <dd> tags, stupid mistakes... bah!

http://test.wh005h.com/register.php

That's the one I've made. It's not perfect yet there's a few tweaks to make still.
Basically I'm just gonna drop that into a site and it should look great XD

Right now I think it's protected against html and the basics for sql injection.

Back on topic, lol, I have a script but you need to make a background image and have 10 or so fonts ready.
It loads up on a bg and rotates letters with a random font.
I ripped the idea from one I found on google =p there's a good one out there you just have to google it and find it.

PHP:
function check_email_mx($email) {
if((preg_match(‘/(@.*@)|(..)|(@.)|(.@)|(^.)/’, $email)) || (preg_match(‘/^.+@([?)[a-zA-Z0-9-.]+.([a-zA-Z]{2,3}|[0-9]{1,3})(]?)$/’,$email)) ) {
$host = explode(‘@’, $email);
if(checkdnsrr($host[1].‘.’, ‘MX’) ) return true;
if(checkdnsrr($host[1].‘.’, ‘A’) ) return true;
if(checkdnsrr($host[1].‘.’, ‘CNAME’) ) return true;
}
return false;
}
There's the function I use for checking emails.
 
Can you send me that script?

and i didn't understand a crap of the code xD

:::EDIT:::
Hey i understood the code xD
 
Last edited:
Just now fixed it =)
One of my inputs wasn't in <dd> tags, stupid mistakes... bah!

http://test.wh005h.com/register.php

That's the one I've made. It's not perfect yet there's a few tweaks to make still.
Basically I'm just gonna drop that into a site and it should look great XD

Right now I think it's protected against html and the basics for sql injection.

Looks pretty neat :). I like the colouring stuff when you didn't fill in something ;). NJ.
 
hmm.. I'll say I'm done for now. I can just get back to it later:krider:

But i though of making a little CMS; with login and news and some other stuff..:woot_jump:
 
[REL][PHP]Angry' Login & Profile Script {V 1.0}[MySQL][REL]

As the name suggest's this is a Login and Profile Script.
It uses a MySQL database to save everything and it uses cookies to log in.

:::FEATURES:::
Login \ Logout

Profile
-Avatars
-Website
-Change Password
-First \Second Name

Userlist
-Shows Username
-Shows Avatar (150 * 150px) -On Mouse Over It Shows The Avatar In Real Size
-Shows Website


:::NEXT RELEASE:::
-Personal Profile With More Info
-Small Adminpanel

*need ideas*
 

Attachments

Back