Comment by allendexter22 on January 23, 2010 at 7:23 pm
good tutorials! i hope more php codes, like how to create forum in php….
Comment by MrSzymexx on January 23, 2010 at 8:18 pm
good tutorials!
Comment by MrSzymexx on January 23, 2010 at 8:50 pm
great tutorials
Comment by xXg3tOwNdN0obXx on January 23, 2010 at 9:49 pm
i didnt understand any of this, im going back to html.
Comment by zakir2004 on January 23, 2010 at 10:49 pm
Could you please upload an video regarding how to create different privilages for different user e.g. admini =1 who can delete edit and update the system and user=2 who can login and edit their own details. really appreciated.
Comment by HipHop4evahh on January 23, 2010 at 11:45 pm
thanks great tut
Comment by jsmith19810808 on January 23, 2010 at 11:47 pm
Its what you’ve set it to.
There’s a default username that comes when you have MySQL called root, the Linux equivalent to the Administrator account in Windows.
You may need to set the password up or remove the “” after the username, remember its host, username and password.
I would make it far more OOP based though set the connection in variables like so:
Comment by coolankur12 on January 24, 2010 at 12:31 am
Thanx bro.
Your videos helped me a lot.
Can you please post a video of shopping cart.
Comment by idogish on January 24, 2010 at 1:15 am
it doesn’t say anything like parse errors like ive seen in other videos, but i will give it a try!
Comment by tomcox2008 on January 24, 2010 at 1:18 am
Is there any generated error? These 2 lines of code you will find “extremly” useful as they will output any errors that have occured, but ony use this for debugging! Add this to the top of your script:
error_reporting(E_ALL);
ini_set(‘display_errors’, ’1′);
Comment by tomcox2008 on January 24, 2010 at 1:20 am
Yes dreamweaver is a text editor, which is all you need to create php scripts
Comment by goodrob1985 on January 24, 2010 at 2:12 am
Hey dude,
thanks alot for your amazing video, you’ve really helped me out of a hole.
My girlfriend says you are a kind hearted soul.
keep posting, great videos
Comment by goodrob1985 on January 24, 2010 at 2:37 am
fixed it with the help of my girlfriend
Comment by goodrob1985 on January 24, 2010 at 3:24 am
i’m having difficulties with the $connect=mysql_connect(“localhost”,”root”,”")
part of this, where would i locate my username and password?
Comment by rich05100 on January 24, 2010 at 3:35 am
can this transfer this to dream weaver
Comment by TheGamershotel on January 24, 2010 at 4:11 am
Hi, Thanks for the tutorial its really good. But i have a slight problem. how do i give access to user@localhost
Comment by idogish on January 24, 2010 at 4:25 am
for some reason this doesn’t work for me. i have xampp like he metioned, the lines of code are the same, and im using firefox to test it . someone please help
Comment by salil2192 on January 24, 2010 at 4:30 am
you need apache server with php so you can execute it and you see the way its shown in the video
Comment by Satcheledde on January 24, 2010 at 5:06 am
@TheHackerTips Just go into your config.inc.php file in the phpmyadmin folder, take off your password.
Comment by Satcheledde on January 24, 2010 at 5:56 am
@leavemealone300435 same error here.
Comment by quickvidtutorials on January 24, 2010 at 6:25 am
i have a problem. how do you save it as .php. when i save it, i open up the index.php, when i open it, it downloads index.php, when i open it, it is my text file. or, sometimes when i save it as all files under index.php, when i open it, it says unknown. what do i do?
thanks in advanced!
Comment by OCRNationalsICT on January 24, 2010 at 6:59 am
Is it possible to instead of using MySQL, to use Microsoft accsess 2007?
Comment by TheFoit on January 24, 2010 at 7:55 am
hey, miXn
the reason i said i wasn’t knowledgeable about php was because i don’t know anything about it; in fact, i can’t even create a basic php page. The irony though, is that i know a great deal of HTML, CSS and very little Javascript. But PHP, i just hate it; i haven’t even been able to install XXamp sucessfully.
Is that a plausible enough answer Mr. miXn???? Do u know PHP? Have u been sucessful at integrating this freaking login®istration in your site???
Comment by TheBestestJohn on January 24, 2010 at 8:32 am
step one…. take a chill pill…. step two google is your friend…. step three join a php forum and ask for help…. welcome to your tutorial for the way to get information on the internet.
Comment by miXn on January 24, 2010 at 8:51 am
why do you say you’re not knowledgeable about PHP?
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 allendexter22 on January 23, 2010 at 7:23 pm
good tutorials! i hope more php codes, like how to create forum in php….
Comment by MrSzymexx on January 23, 2010 at 8:18 pm
good tutorials!
Comment by MrSzymexx on January 23, 2010 at 8:50 pm
great tutorials
Comment by xXg3tOwNdN0obXx on January 23, 2010 at 9:49 pm
i didnt understand any of this, im going back to html.
Comment by zakir2004 on January 23, 2010 at 10:49 pm
Could you please upload an video regarding how to create different privilages for different user e.g. admini =1 who can delete edit and update the system and user=2 who can login and edit their own details. really appreciated.
Comment by HipHop4evahh on January 23, 2010 at 11:45 pm
thanks great tut
Comment by jsmith19810808 on January 23, 2010 at 11:47 pm
Its what you’ve set it to.
There’s a default username that comes when you have MySQL called root, the Linux equivalent to the Administrator account in Windows.
You may need to set the password up or remove the “” after the username, remember its host, username and password.
I would make it far more OOP based though set the connection in variables like so:
$host = ‘localhost’;
$uname = ‘root’;
$passwd = ‘whateveryourpassswordis’;
mysql_connect($host,$uname,$passwd)
Makes for efficient code.
Comment by coolankur12 on January 24, 2010 at 12:31 am
Thanx bro.
Your videos helped me a lot.
Can you please post a video of shopping cart.
Comment by idogish on January 24, 2010 at 1:15 am
it doesn’t say anything like parse errors like ive seen in other videos, but i will give it a try!
Comment by tomcox2008 on January 24, 2010 at 1:18 am
Is there any generated error? These 2 lines of code you will find “extremly” useful as they will output any errors that have occured, but ony use this for debugging! Add this to the top of your script:
error_reporting(E_ALL);
ini_set(‘display_errors’, ’1′);
Comment by tomcox2008 on January 24, 2010 at 1:20 am
Yes dreamweaver is a text editor, which is all you need to create php scripts
Comment by goodrob1985 on January 24, 2010 at 2:12 am
Hey dude,
thanks alot for your amazing video, you’ve really helped me out of a hole.
My girlfriend says you are a kind hearted soul.
keep posting, great videos
Comment by goodrob1985 on January 24, 2010 at 2:37 am
fixed it with the help of my girlfriend
Comment by goodrob1985 on January 24, 2010 at 3:24 am
i’m having difficulties with the $connect=mysql_connect(“localhost”,”root”,”")
part of this, where would i locate my username and password?
Comment by rich05100 on January 24, 2010 at 3:35 am
can this transfer this to dream weaver
Comment by TheGamershotel on January 24, 2010 at 4:11 am
Hi, Thanks for the tutorial its really good. But i have a slight problem. how do i give access to user@localhost
Comment by idogish on January 24, 2010 at 4:25 am
for some reason this doesn’t work for me. i have xampp like he metioned, the lines of code are the same, and im using firefox to test it . someone please help
Comment by salil2192 on January 24, 2010 at 4:30 am
you need apache server with php so you can execute it and you see the way its shown in the video
Comment by Satcheledde on January 24, 2010 at 5:06 am
@TheHackerTips Just go into your config.inc.php file in the phpmyadmin folder, take off your password.
Comment by Satcheledde on January 24, 2010 at 5:56 am
@leavemealone300435 same error here.
Comment by quickvidtutorials on January 24, 2010 at 6:25 am
i have a problem. how do you save it as .php. when i save it, i open up the index.php, when i open it, it downloads index.php, when i open it, it is my text file. or, sometimes when i save it as all files under index.php, when i open it, it says unknown. what do i do?
thanks in advanced!
Comment by OCRNationalsICT on January 24, 2010 at 6:59 am
Is it possible to instead of using MySQL, to use Microsoft accsess 2007?
Comment by TheFoit on January 24, 2010 at 7:55 am
hey, miXn
the reason i said i wasn’t knowledgeable about php was because i don’t know anything about it; in fact, i can’t even create a basic php page. The irony though, is that i know a great deal of HTML, CSS and very little Javascript. But PHP, i just hate it; i haven’t even been able to install XXamp sucessfully.
Is that a plausible enough answer Mr. miXn???? Do u know PHP? Have u been sucessful at integrating this freaking login®istration in your site???
Comment by TheBestestJohn on January 24, 2010 at 8:32 am
step one…. take a chill pill…. step two google is your friend…. step three join a php forum and ask for help…. welcome to your tutorial for the way to get information on the internet.
Comment by miXn on January 24, 2010 at 8:51 am
why do you say you’re not knowledgeable about PHP?