In this series of video’s I take you to the next level in learning How to Code PHP. I’ve included many PHP tutorials on the most in demand PHP scripts including:
With this series of video tutorials I’ll teach why to use PHP? And, I hope to help you master the PHP Engine.
How to Code a PHP Simple Login Script
How to Code a PHP New User Registration Script
How to Code a PHP Quality Login Script
How to Code a PHP Forgotten Password Script
How to Code a PHP Account Activation Script
How to Code a PHP Automatic Updating Multiple Drop Down Boxes Script
That’s All Folks
I hope you learned a lot from this video series? If you have questions leave them in the comment section below.
Soon I’ll show you how to create PHP Spider’s that will run all over the internet and grab data for you. And, currently I’m working on a completely automated web site news aggregator. As soon as that is done, we’ll be able to create websites that crank out great information all on their own.
Till Next Time…
Think Tank
Hi, Derek! I have a question. How to split data from textarea and insert it to DB? Example data:
1,2,3,4
5,6,7,8
9,0,1,2
3,4,5,6
7,8,9,0
How to explode data into lines, explode each line into values and insert it in to DB table (name,lastname,birthday,email)? And how to secure it from injections?
1. explode(separator, $string): Turns a string into an array. You define what character in the string you want to separate the values that will be inserted into the array.
2. I cover how to use MySQL with PHP in depth in these 5 tutorials
a. Web Design and Programming Pt 14
b. Web Design and Programming Pt 15
c. Web Design and Programming Pt 16
d. Web Design and Programming Pt 17
e. Web Design and Programming Pt 18
3. I have over 30 PHP Tutorials on this page PHP and MySQL Tutorial. The last set of tutorials is on PHP Security
That should answer all of your questions 🙂