Page 1 of 1
Time database
Posted: Wed Aug 25, 2010 9:02 am
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

Re: Time database
Posted: Wed Aug 25, 2010 11:19 am
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....
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.
Re: Time database
Posted: Sun Aug 29, 2010 5:47 am
by hentaiw
Make contact with other script,e.g upload to mediafire script

like some multiupload script.