Firstly. Very well done tutorial. Wish I had found something like this when I was starting off. =(
Just a small note.
Using mysql_fetch_array is unnecessary as it returns both the name of the db column AND it’s index number. There’s no point in returning both when you’re only going to be using one. I’ve never been in a situation where I needed anything more than the associative name.
I have been following your tut and i’m trying to imply it to my coding. Pretty much im trying to do the same thing. i want to retrieve data from my forum that i made onto my site but its not working. do u have msn or an email so i can explain it more in detail? its probably an easy fix.
GREAT tutorial. I am hoping to see more advanced use of php/mysql in future videos from you.
Report this comment
good one..hope you can post more of these!
Report this comment
Great tutorial dude
Though I’m a Pro on PHP but I love your videos, you explain good.
Very good for newbies.
Report this comment
hey if your pretty good at it could you make a video on how to put a username and pass on a site?
Report this comment
Yes, sure.
But I hate the uploading limit.
Report this comment
what is the link
Report this comment
YOU SOUND LIKE MARK ZUCKERBERG
Report this comment
He’s got a beautiful accent. Which region people sound like this?
Report this comment
What keyboard are you using?
Report this comment
Firstly. Very well done tutorial. Wish I had found something like this when I was starting off. =(
Just a small note.
Using mysql_fetch_array is unnecessary as it returns both the name of the db column AND it’s index number. There’s no point in returning both when you’re only going to be using one. I’ve never been in a situation where I needed anything more than the associative name.
So instead, just use:
while($row = mysql_fetch_assoc($result)){
//etc
I’d be willing to be that it’s faster
Report this comment
I have been following your tut and i’m trying to imply it to my coding. Pretty much im trying to do the same thing. i want to retrieve data from my forum that i made onto my site but its not working. do u have msn or an email so i can explain it more in detail? its probably an easy fix.
Report this comment