26Jan/1025
PHP Tutorials: Random Password Generator
Create a random password generator from a specific character set. Visit the forum for help! phpacademy.info Follow on Twitter! twitter.com
Create a random password generator from a specific character set. Visit the forum for help! phpacademy.info Follow on Twitter! twitter.com
December 23rd, 2009 - 17:19
cool
December 24th, 2009 - 19:22
If you use single or double quotes as string characters, simply use a backslash before the quotes (\) to escape that character from the interpreter.
December 25th, 2009 - 14:55
thanks
December 26th, 2009 - 01:30
hey i need help with something… how can i implement commenting feature in my website?? like this comment service on youtube… i mean so people can comment on my products and its saved on the same page under the product… like comments under this video…
December 26th, 2009 - 15:57
@BABURAOIU
I would do it like the guestbook thing.
maybe you should combine it with the pagination?
December 26th, 2009 - 17:03
@KoolKid417 Wow, didn’t notice that before! Not sure why it happened, probably something to do with the rand function and how I set it up.
December 27th, 2009 - 02:36
It might be me or something, but none of these tutorials on php work. i use the ConTEXT and everything . even the code is the same but it never works
December 27th, 2009 - 04:50
yeeeh for google chrome
December 27th, 2009 - 05:30
Do you have a server set up?
December 27th, 2009 - 06:28
Hay Alex, way u don’t use PHPdesigner?
here link to program
h t t p : / / depositfiles(.)com/files/m17hcw08u
here keygen
h t t p : / / rapidshare(.)com/files/180773277/PHP.Designer.2008.Professional.v6.2.3.Incl.Keygen-25-09-2008(.)rar –no dashes
December 27th, 2009 - 12:38
Thanks!
December 29th, 2009 - 04:22
For those who dont know, if you get a undefined variable just next to this line
$password = $password.$temp;
add an @ before it
@$password = $password.$temp;
so you wont get that error if you happen to get it.
December 31st, 2009 - 12:16
That would slow it down.. Add error_reporting(0); before..
December 31st, 2009 - 23:14
it should not only display “u”, it should display more symbols…
January 2nd, 2010 - 07:47
do anayone know of anay program that puts the same emil and a deff random password in for like ssay myspace over and over?
January 3rd, 2010 - 00:21
I was searching for this for a long time. =p
January 3rd, 2010 - 16:32
thanks alex in incorporated this into my register/login page so now you register a new user and a random password get’s sent to their email address and then they can change it when they log in IF they choose.
January 4th, 2010 - 14:22
why this php scripts doesn’t function with me?? i ve write all what have you write.. can you help me please?
January 9th, 2010 - 11:38
First of all do you have any error? If you are just getting a blank page, switch on the reporting function in PHP, so that you can identify what the problem is. Try these 2 lines of code at the top of your script, which will output all errors (only use for debugging. Here you go:
error_reporting(E_ALL);
ini_set(’display_errors’, ‘1′);
January 10th, 2010 - 09:50
@tomcox2008 I use dreamweaver cs 3.. maybe is this program the cause of error?
January 11th, 2010 - 21:03
No dreamweaver will not cause the error, the error lies either within your script or your php/mysql setup. If you are unsure about how to set up an appache server running php and mysql, consider downloading something like WAMP or XAMMP, which will do the installation for you.
January 15th, 2010 - 09:53
5 Stars!! Exactly what I was searching for. Cheers
January 19th, 2010 - 00:25
why do you dont get any error? i need to set
$password = “”; before i can use $password .= $temp; and that makes my code ugly
January 19th, 2010 - 20:34
Put error_reporting(E_ALL & ~E_NOTICE); above your page. You won’t get those nasty Notice errors =D
January 20th, 2010 - 21:05
thanks dude… already implemented that… thanks for the help though…