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
Moderator: General Moderators
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.hentaiw wrote:How can I make database of time : e.g 15/04/1993 ?
Code: Select all
date( "d.m.Y.", time() );
Try multiple hash like this:hentaiw wrote:And how I can make a password which stronger than MD5,I like the way vBulletin encrypt the password...
Code: Select all
md5 ( sha1 ( md5( "Yabadaba-doo" ) ) );
Read this w3scools.com > File uploadhentaiw wrote:And how I can upload file,include all formats ?
Can you please clarify this bit.hentaiw wrote:And how I can make a contact with other PHP script ?