php developer

› Sridhareena.com: phpMyAdmin Installation Tutorial

From Sridhareena.com today, there's this quick tutorial covering the installation of the popular phpMyAdmin database management package on a shared hosting account.

If you are like me on a shared hosting server chances are your web hosting account has cPanel or some other administration panel through which you can create/delete MySQL databases (DBs)/DB users.

Enter phpMyAdmin to the rescue. It is a nice web interface to control your MySQL DB. Most hosts already provide phpMyAdmin but it's usually out-dated. This is a step-by-step tutorial for installation of phpMyAdmin on your shared hosting space using FTP access. (Shell access fastens the process, but am not covering that here now). You are going to download the needed files on your computer (Windows, I would guess), upload to your UNIX run web host and set everything up.

It's a quick eight step process to get everything up and working, and that's including downloading the package, extracting it, and an optional language change.

26/05/2006 1:32 pm (UTC)   PHP Developer   View entry   Digg!  digg it!   del.icio.us  del.icio.us

php developer

› HTMLGoodies.com: PHP Tutorial - Introduction

In this new article (set) from HTMLGoodies.com today, they're looking to start off web developers on the right foot with PHP by providing a good resource of basic, common tasks budding PHP developers tend to work at.

This series is a new series that is in development right now. This tutorial series is a little more advanced than our HTML tutorials. The assumption is made that you already have an understanding of HTML and basic web design. For this reason this is not a good starting point for the new designer, but is instead a place for one with a little experience to spread their wings and expand their design horizons.

the series as times goes on, but for now they cover a good range of topics, including:

26/05/2006 1:24 pm (UTC)   PHP Developer   View entry   Digg!  digg it!   del.icio.us  del.icio.us

php developer

› Bitstorm.org: What I don't like about PHP

According to the reasons listed here, PHP isn't good for much more than just the smallish, more personal sites. It was originally written back in 2004, but has just been recently updated (April 2006) with a more current state of PHP.

I have been developing in PHP for six years now. PHP is very easy to program in. But PHP also has some serious flaws. Below I give some reasons why you have to do some serious thinking before implementing a large scale web application in PHP.

Some of the reasons they give include:

  • Many PHP-modules are not thread safe
  • Non-standard date format characters
  • No Unicode
It's interesting to see how many of these reasons seem to be more of a preference than a real standard, and the "crippled for commercial reasons" comments are very interesting. Also, several of these will be addressed in the next version of PHP, version 6.

26/05/2006 1:06 pm (UTC)   PHP Developer   View entry   Digg!  digg it!   del.icio.us  del.icio.us

php developer

› Leendert Brouwer's Blog: PHP Beginners Tutorial Revisited

As referenced in this new blog post today, Leendert Brouwer has posted a rehacshing of a previous introductory tutorial for PHP to his site.

I recently found back a tutorial that I wrote somewhere in the year 2000. It was popular back then, and got a little outdated over time. I changed a bit here and there so it's up-to-date again (mainly superglobals stuff, back then it wasn't uncommon to have register_globals turned On..). Have fun reading it!

It's a good sized tutorial that covers a wide range of topics, including:

  • getting started
  • varaibles/datatypes
  • loops/operators
  • arrays
  • form handling
  • functions
  • some string manipulation

26/05/2006 12:52 pm (UTC)   PHP Developer   View entry   Digg!  digg it!   del.icio.us  del.icio.us

php developer

› Community News: Windows Software Tools for PHP Wants Beta Testers

Stephen Kellett wrote in to let us know about some new software tools for working with PHP that are in beta testing now for the Windows environment.

Software Verification has released its PHP software tools into beta status. The software tools provide flow tracing, code coverage and performance profiling for PHP 4 and PHP5. No code modification is required. The software tools run on Windows NT 4.0, 2000, XP and above.

If you'd like to sign up and become a beta tester for this software, check out this page to contact them with your information.

25/05/2006 2:15 pm (UTC)   PHP Developer   View entry   Digg!  digg it!   del.icio.us  del.icio.us

php developer

› Daniel Krook's Blog: Published - Developing PHP Applications for IBM Data Servers

According to this new post on Daniel Krook's blog today, a Redbook that he coauthored with a group of fellow "IBMers" has been published today - Developing PHP Applications for IBM Data Servers.

The book had three goals; to demonstrate best practices for developing PHP applications with IBM database servers, to provide detailed instructions for administrators to set up all the required software, and to help users migrate from MySQL to DB2.

You can check out the online version of the book here as a PDF file. There's also some additional materials to suppliment it.

24/05/2006 7:01 pm (UTC)   PHP Developer   View entry   Digg!  digg it!   del.icio.us  del.icio.us

community news (ez.no)  eZ systems employee

› Feature request list for eZ publish 3.9

24/05/2006 3:30 pm (UTC)   Community news (ez.no)   View entry   Digg!  digg it!   del.icio.us  del.icio.us

php developer

› IBM developerWorks: Locking down your PHP applications

IBM developerWorks has another new tutorial today with a look at locking down your PHP applications - "four security rules you can't violate".

In this tutorial, you'll learn how to add security to your PHP Web applications. It is assumed that you've been coding PHP Web applications for at least a year, so it won't cover the basics of the language (either conventions or syntax). The goal is to make you more aware of what you should be doing to secure the Web applications you're building.

This tutorial teaches you how to guard against the most common security threats: SQL injections, the manipulation of the GET and POST variables, buffer overflow attacks, cross-site scripting attacks, data manipulation inside the browser, and remote form posting.

You'll need a system already running PHP (at least version 4.x) and MySQL on a web server (Apache or otherwise). They look briefly at some of the common security issues plaguing web applications these days before moving on to the four rules:

  • Never trust outside data or input
  • Disable PHP settings that make security difficult to enforce
  • You can't secure it if you can't understand it
  • "Defense in depth" is your new mantra
They take a look at each of these and use the rest of the article (8 more pages) showing you how to keep yourself safe from these issues.

24/05/2006 1:17 pm (UTC)   PHP Developer   View entry   Digg!  digg it!   del.icio.us  del.icio.us

php developer

› IBM developerWorks: Build a Web service with PHP

Web services are a great way to link machines and provide data out to a needy public (whether that be internal or external), but getting started with them can sometimes be confusing. Thankfully, there's tutorials like this one from IBM developerWorks to help things along.

This tutorial is for PHP programmers that would like to jump on the Web services bandwagon by creating a Web service in PHP. You'll build a Web service by building a SOAP server in PHP. The Web service you will create will be a vehicle lookup service that takes in queries based on make, model, and year.

There's many different methods one can use to handle the messages for a web service - they decided on SOAP. Obviously, you'll need a working PHP install on an Apache web server before even getting started, and they use a database (Apache Derby) to handle the data on the backend. You'll need to login/create a login to get into it, but once you do, you can follow their steps to the creation of an example client and server for the web service:

  • Overview and Setup
  • Simple SOAP server in PHP
  • Derby: Setting Up
  • Architecting the user interface
  • The client
  • The server

24/05/2006 1:05 pm (UTC)   PHP Developer   View entry   Digg!  digg it!   del.icio.us  del.icio.us

php developer

› Zend Developer Zone: Zip-it or DIY Tar-balls

On the Zend Developer Zone, there's a new article concerning the creation of zip files and tarballs inside of a PHP script, including a link to a tutorial from PHPit.net and the steps he had to follow to get started.

Who hasn't sat in front of their computer night after night wondering aloud
24/05/2006 12:53 pm (UTC)   PHP Developer   View entry   Digg!  digg it!   del.icio.us  del.icio.us

eZ publish™ copyright © 1999-2005 eZ systems as