PHP tutorials - Check them out..

  • Thread starter Acid X
  • 7 comments
  • 707 views
6,668
United States
California
Axidwulv
I recently started writing a PHP Beginner's tutorial, and have added both part 1 and part 2 to my website. You can find them at the following URL:

www.tehacidx.tk

I've decided to write these because i have the time, and i know alot of people would like to learn PHP.

Hopefully this gets stickied, just so the newcomers can find it if they need help.

Oh, and if you wish for me to write a tutorial on anything, post it here, and i'll try my best! :)

Ta ta for now.

2/15/2004
I added a new tutorial. It's for more advanced people, and is about editing images in PHP. Take a look!
 
nice, i wish all tutorials were as simple to understand as yours are, but ive came across 1 problem , when trying out the image creation tutorial, my php processor says

Fatal error: Call to undefined function: imagecreate()

whenever i try to run in my pc and on my website
( http://www.hostultra.com/~mmx32/php/tes3.php )
 
Your server most likely doesnt have GD installed.. It has to be compiled in with the PHP installation. Sorry.. :(

You might be able to email your Tech Support for your host, and ask if they can compile it in, but they might not do it. It's worth a try, though.
 
If you run phpinfo(), it will show all the modules that are compiled in, and will tell you what the image support is like.

Don't leave a script that calls phpinfo() in a public directory though, as there's a vulnerability in it.
 
Back