Navigation Home / Tags / PHP

ranking Sort Sort   |   date Sort Sort   |   member Sort Sort
Syndication

« Previous 1 2 3 4 5 6 7 8 9  ...  14 15 Next »
15
Date Submitted Fri. Jan. 19th, 2007 2:37 PM
Revision 1
Helper inxilpro
Tags "word list" | Generator | Password | PHP | Random
Comments 0 comments
This is a random password generator that produces understandable passwords based on word lists. I've only included a 3 entry world list because you should chose a list based on your password requirements and your users. If you need to generate passwords that are 14 characters in length, you will want a different list than if you're generating 8 character passwords. And depending on your users, you may want to use certain lists. The list I use is about 4000 words that are 5-7 characters long, all well-known words that have had potentially objectionable content removed. For security reasons I don't want to include this list.

A note on security: though this generates relatively strong passwords for the average user, they are particularly susceptible to brute-force attacks. This is even more an issue if somehow your word list gets compromised. I would not recommend using this function for anything where a highly secure password is needed.

A note on choosing your list: You'll also see that I've built the system to avoid generating passwords with zeros and ones in them. This is because zero and upper-case "o" can be confused as can one, lower-case "L" and upper-case "i." When choosing my word list I was also sure to strip out all words that start with the letter "o" or "i" (to prevent the optional ucfirst() from creating 0/O and I/1 confusion) and words that contain the letter "L" (to prevent l/1 confusion). I find that this greatly helps with preventing confusion, but again weakens the security of the passwords some. It's your choice.
2
Date Submitted Sun. Apr. 4th, 2010 8:16 AM
Revision 1
Helper jackoder
Tags iban | PHP | Validate
Comments 0 comments
Here's a code block about iban validation with php.
1
Date Submitted Thu. May. 6th, 2010 8:51 AM
Revision 1
Helper jackoder
Tags !important | checker | PHP | Server
Comments 0 comments
Hello Coders,
Here's a useful php code block for your projects to control server status.

You can report a server status result by using these codes. I hope you'll like it. Also; i suggest you to rest for a while on 2 Kişilik Oyunlar and Oyunlar site to fun. I think you'll like them. I wish you success on your softwares.

Best codings!
-2
Date Submitted Thu. May. 20th, 2010 12:49 PM
Revision 1
Helper jackoder
Tags PHP | short | URL
Comments 0 comments
Here's a code block for your projects to get shorter long urls.

It can be used any type of your projects. I hope you'll like it; i suggest you to take information about ozon tedavisi from here.

Have a nice work.
-2
Date Submitted Fri. Jun. 25th, 2010 5:24 AM
Revision 1
Helper jackoder
Tags Image | PHP | upload
Comments 0 comments
You can use this script in your projects when you need an image upload function. It checks file type, file size and error report. I also want you to check giochi di spongebob and gratis mahjong too. I hope you will like this code line.
-2
Date Submitted Wed. Jul. 7th, 2010 4:19 PM
Revision 1
Helper jackoder
Tags Image | PHP | resizing
Comments 0 comments
Hello coders,

I want to share with you another codeblock that you can use to resize an image in your projects.
-2
Date Submitted Sat. Jul. 24th, 2010 7:40 AM
Revision 1
Helper jackoder
Tags Image | PHP | Random
Comments 0 comments
Hi coders,

Here's a code block that you can use it in your projects easily. It provides you to show random images.

I hope that you'll like it. I'll also use it in 2 spieler spiele and gute spiele web sites. You can follow them from it.

Best wishes.
-2
Date Submitted Fri. Aug. 27th, 2010 12:19 PM
Revision 1
Helper jackoder
Tags information | PHP | site
Comments 0 comments
Hello Php Coders,

We are together after a while. I'll share with you a special function that you can take a website's information with it. You can also check this url to take a look on denizli kız yurdu web pages.

I hope this codeblok will be useful for your projects.

Best codings.
14
Date Submitted Mon. Oct. 23rd, 2006 10:19 PM
Revision 1
Helper jdenton
Tags Calendar | Date | days | PHP
Comments 0 comments
daysBeteenDates will calculate the number of days between 2 dates in the form of 'YYYY-MM-DD'.
6
Date Submitted Mon. Oct. 23rd, 2006 10:48 PM
Revision 1
Helper jdenton
Tags GD | gif | images | jpeg | PHP | png | Resize
Comments 1 comments
The resize_image function allows you to resize a GIF, JPEG or PNG file to any dimension you wish and put an optional black border around the image. Here's an explanation of the arguements:

$image_path: The complete path to the image to be resized

$max_width: Maximum width of the resized image. Leave 0 if you want to specify only the height and have the width auto-scale.

$max_height: Maximum height of the resized image. Leave 0 if you want to specify only the width and have the height auto-scale.

$file_prefix: This will prepend a string onto the resized image filename. If you want to create a thumbnail image and keep the original, set $file_prefix = 'thumb'.

$dir: Allows you to save the resized image to a sub directory under the $image_path directory. If you want to save thumbnail images to images/thumbs, set $dir = 'thumbs'.

$border: boolean, 1 = border, 0 = no border

$mime: Image mime type. (image/jpeg, image/gif, image/png)
« Previous 1 2 3 4 5 6 7 8 9  ...  14 15 Next »