Comment by BABURAOIU on January 31, 2010 at 7:34 pm
thanks dude… already implemented that… thanks for the help though…
Comment by UniqAssassin on January 31, 2010 at 8:32 pm
Put error_reporting(E_ALL & ~E_NOTICE); above your page. You won’t get those nasty Notice errors =D
Comment by MoonWerewolf on January 31, 2010 at 8:56 pm
why do you dont get any error? i need to set
$password = “”; before i can use $password .= $temp; and that makes my code ugly
Comment by kaikajus on January 31, 2010 at 9:25 pm
5 Stars!! Exactly what I was searching for. Cheers
Comment by tomcox2008 on January 31, 2010 at 9:29 pm
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.
Comment by hekaitomix94 on January 31, 2010 at 9:50 pm
@tomcox2008 I use dreamweaver cs 3.. maybe is this program the cause of error?
Comment by tomcox2008 on January 31, 2010 at 10:47 pm
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:
Comment by hekaitomix94 on January 31, 2010 at 11:22 pm
why this php scripts doesn’t function with me?? i ve write all what have you write.. can you help me please?
Comment by digesteddonkey on January 31, 2010 at 11:40 pm
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.
Comment by UnbreakableBeast on February 1, 2010 at 12:26 am
I was searching for this for a long time. =p
Comment by iwilpooponu on February 1, 2010 at 1:14 am
do anayone know of anay program that puts the same emil and a deff random password in for like ssay myspace over and over?
Comment by vb6help on February 1, 2010 at 2:08 am
it should not only display “u”, it should display more symbols…
Comment by TCHyper on February 1, 2010 at 2:11 am
That would slow it down.. Add error_reporting(0); before..
Comment by ti07shadow on February 1, 2010 at 2:20 am
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.
Comment by AmrBanna on February 1, 2010 at 2:52 am
Thanks!
Comment by ucha19871 on February 1, 2010 at 3:39 am
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
Comment by eyeAMtwinkEE on February 1, 2010 at 3:59 am
Do you have a server set up?
Comment by meNiMONSTERs on February 1, 2010 at 4:43 am
yeeeh for google chrome
Comment by idogish on February 1, 2010 at 4:45 am
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
Comment by phpacademy on February 1, 2010 at 4:53 am
@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.
Comment by Marci2110 on February 1, 2010 at 5:26 am
@BABURAOIU
I would do it like the guestbook thing.
maybe you should combine it with the pagination?
Comment by BABURAOIU on February 1, 2010 at 6:15 am
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…
Comment by rluximon on February 1, 2010 at 6:44 am
thanks
Comment by wrdeboise on February 1, 2010 at 7:42 am
If you use single or double quotes as string characters, simply use a backslash before the quotes () to escape that character from the interpreter.
Comment by ORP4th on February 1, 2010 at 7:54 am
cool
About this blog
This blog is dedicated to showcasing great web design as well as providing advice and tips to any aspiring web designers out there. Hopefully these articles will aid you in your design and development.
25 comments
Comment by BABURAOIU on January 31, 2010 at 7:34 pm
thanks dude… already implemented that… thanks for the help though…
Comment by UniqAssassin on January 31, 2010 at 8:32 pm
Put error_reporting(E_ALL & ~E_NOTICE); above your page. You won’t get those nasty Notice errors =D
Comment by MoonWerewolf on January 31, 2010 at 8:56 pm
why do you dont get any error? i need to set
$password = “”; before i can use $password .= $temp; and that makes my code ugly
Comment by kaikajus on January 31, 2010 at 9:25 pm
5 Stars!! Exactly what I was searching for. Cheers
Comment by tomcox2008 on January 31, 2010 at 9:29 pm
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.
Comment by hekaitomix94 on January 31, 2010 at 9:50 pm
@tomcox2008 I use dreamweaver cs 3.. maybe is this program the cause of error?
Comment by tomcox2008 on January 31, 2010 at 10:47 pm
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′);
Comment by hekaitomix94 on January 31, 2010 at 11:22 pm
why this php scripts doesn’t function with me?? i ve write all what have you write.. can you help me please?
Comment by digesteddonkey on January 31, 2010 at 11:40 pm
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.
Comment by UnbreakableBeast on February 1, 2010 at 12:26 am
I was searching for this for a long time. =p
Comment by iwilpooponu on February 1, 2010 at 1:14 am
do anayone know of anay program that puts the same emil and a deff random password in for like ssay myspace over and over?
Comment by vb6help on February 1, 2010 at 2:08 am
it should not only display “u”, it should display more symbols…
Comment by TCHyper on February 1, 2010 at 2:11 am
That would slow it down.. Add error_reporting(0); before..
Comment by ti07shadow on February 1, 2010 at 2:20 am
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.
Comment by AmrBanna on February 1, 2010 at 2:52 am
Thanks!
Comment by ucha19871 on February 1, 2010 at 3:39 am
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
Comment by eyeAMtwinkEE on February 1, 2010 at 3:59 am
Do you have a server set up?
Comment by meNiMONSTERs on February 1, 2010 at 4:43 am
yeeeh for google chrome
Comment by idogish on February 1, 2010 at 4:45 am
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
Comment by phpacademy on February 1, 2010 at 4:53 am
@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.
Comment by Marci2110 on February 1, 2010 at 5:26 am
@BABURAOIU
I would do it like the guestbook thing.
maybe you should combine it with the pagination?
Comment by BABURAOIU on February 1, 2010 at 6:15 am
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…
Comment by rluximon on February 1, 2010 at 6:44 am
thanks
Comment by wrdeboise on February 1, 2010 at 7:42 am
If you use single or double quotes as string characters, simply use a backslash before the quotes () to escape that character from the interpreter.
Comment by ORP4th on February 1, 2010 at 7:54 am
cool