| Home : PHP : Articles, Tips & Tutorials : Miscellaneous |
| Click "Subscribe" if you want to be notified of new or updated links in this category. | Subscribe |
|
Miscellaneous Listings |
|
Total:
27 | Displaying: 1 - 10 | Pages: 123 |
|
|
A Test To See If You Write Sloppy Software
|
Website
Refer
Review It
|
As a freelance programmer, I have built quite a few web applications over the years, some pretty and some not-so-pretty. Before I got involved in PHP, I had worked mostly in Java, with its rigid and forced programming style. With PHP, of course, it`s easy to get lazy and write sloppy code, and PHP will always perform well no matter what. Recently, however, I took over maintenance of a web application which set new lows for maintainability, quality, and structure. As I set about cleaning up this application, I took a few notes on what its most glaring problems were, and have devised a little quiz for you to take...
Updated: 02/16/2004
|
|
E-Cards with PHP & MySQL
|
Website
Refer
Review It
|
So you want to make e-cards for your site, eh? I recently did this, and it took me a while to get it all working right, so here`s a quick tutorial so you won`t have to suffer what I did. You may notice a lot of references to `floppy dogs` in this tutorial, but that`s because it comes straight from my own code on floppydogs.com...
Updated: 02/14/2004
|
|
LAMP, MySQL/PHP Database driven website design and development
|
Website
Refer
Review It
|
One of the great `secrets` of almost all websites (aside from those that publish static .html pages) is that behind the scenes, the webserver is actually just one part of a two or three tiered application server system. In the open source world, this explains the tremendous popularity of the Linux-Apache-MySQL-PHP (LAMP) environment. LAMP provides developers with a traditional two tiered application development platform. There is a database, and a `smart` webserver able to communicate with the database. Clients only talk to the webserver, while the webserver transparently talks to the database when required. The following diagram illustrates how a typical LAMP server works...
Updated: 02/14/2004
|
|
Overriding the php.ini with no access!
|
Website
Refer
Review It
|
This tutorial is a short explanation of how you can override some of your web host`s default php.ini settings without having access directly to the php.ini. The reason we wanted to bring this out is because there have been numerous questions about how this can be done, and alot of people were suprised to find out that they didn`t have to email their hosting company and plead with them to get this done...
Updated: 02/14/2004
|
|
Open Source licensing for PHP scripts
|
Website
Refer
Review It
|
So, you`ve managed to write your first `useful` PHP script, and want to make it open source, let the world enjoy your work. But however you decide to use your scripts, as long as you use them publically, they need a LICENSE, since no software falls outsite the bounds of international law...
Updated: 02/14/2004
|
|
Custom Error 404 Documents with PHP
|
Website
Refer
Review It
|
Have you ever designed your website, built the structure and decided one day that you want to completely redesign your layout? Well, if you have an established website, changing your structure can be a real pain for your users or people searching for your site in search engines. This tutorial will show you how to avoid getting those Error 404 Not Found errors and redirect people back into your new design...
Updated: 02/14/2004
|
|
Static HTML Generation With PHP
|
Website
Refer
Review It
|
When you are running a large volume website that requires alot of mysql_query action you`ll probably want to consider ways to reduce the impact of your server`s performance. We can do this by generating static html pages from the pages that require all of these queries. By writing a few simple PHP scripts you can prepare to CRON your PHP driven site and have it automatically update for you at set intervals. Or you can have direct control over the updates via your web browser. This makes your website run alot faster and reduces your MySQL database queries dramatically...
Updated: 02/14/2004
|
|
PHP & Java
|
Website
Refer
Review It
|
The Java extension is an extremely exciting tool. By learning how to use this module, you can extend PHP by the power of all available Java classes. To show you the basics of the Java extension, this article will cover installation and a few code examples of using PHP and Java together...
Updated: 02/14/2004
|
|
Sending MIME email in PHP
|
Website
Refer
Review It
|
Tired of sending those drab textual notifications and newsletters to your friend and clients? Ever wanted to send attachments and/or HTML embedded email.
The answer is MIME. The ensuing few pages explain the basics of MIME, creating MIME-compliant messages and then ends with a working class implementation of sending MIME complaint email in PHP. Note that references to calling script, caller etc. denote the script that uses the class we are about to develop and client/MUA etc. denote a mail reading client or mail user agent...
Updated: 02/14/2004
|
|
How to Build a Mailbot in PHP
|
Website
Refer
Review It
|
The fascination with having software automate your mundane tasks never ceases. One such tedious activity lies in email parsing. Email accounts can be a useful tool for enabling people to enact a request or issue a command that may not require the intervention of humans. One such example is the, now all to common, unsubscribe request to harmless lists and nefarious spammers. The automated program that handles these requests is called a mailbot...
Updated: 02/14/2004
|
|