Time database

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
hentaiw
Forum Newbie
Posts: 3
Joined: Wed Aug 25, 2010 8:27 am

Time database

Post by hentaiw »

How can I make database of time : e.g 15/04/1993 ?
And how I can make a password which stronger than MD5,I like the way vBulletin encrypt the password...
And how I can upload file,include all formats ?
And how I can make a contact with other PHP script ?

Please help and thank you very much :)
User avatar
MindOverBody
Forum Commoner
Posts: 96
Joined: Fri Aug 06, 2010 9:01 pm
Location: Osijek, Croatia

Re: Time database

Post by MindOverBody »

hentaiw wrote:How can I make database of time : e.g 15/04/1993 ?
Dunno what you mean with this, but you can make timestamp in php with time() and place it in database table. When needed, get that timestamp from database and format it with date() function.

Play with this....

Code: Select all

date( "d.m.Y.", time() );
hentaiw wrote:And how I can make a password which stronger than MD5,I like the way vBulletin encrypt the password...
Try multiple hash like this:

Code: Select all

md5 ( sha1 ( md5( "Yabadaba-doo" ) ) );
hentaiw wrote:And how I can upload file,include all formats ?
Read this w3scools.com > File upload
hentaiw wrote:And how I can make a contact with other PHP script ?
Can you please clarify this bit.
hentaiw
Forum Newbie
Posts: 3
Joined: Wed Aug 25, 2010 8:27 am

Re: Time database

Post by hentaiw »

Make contact with other script,e.g upload to mediafire script :) like some multiupload script.
Post Reply