This tutorial describes a PHP-Nuke Function to restrict access by page as public or private. The function pageStatus(); is called on the top (or inside your root level header, not the themes header) of all pages. This will allow you to deifne in your admin panel specifc pages and urls that you want to have a particular viewing status. It explains a few ways to go about defining which pages to have the "public" or "private" status. Also the code for the function is available.
As more and more Web pages become database-driven and dynamic, it will be important that Web browsers display the most up-to-date information available from your site. The author notes "For those who have been in the PHP field for some time, dealing with this issue is nothing new. The problem itself has nothing to do with PHP at all. Rather, it is the client's browser that is the source." This article addresses such topics as PHP and Browser Caches and Cache Controlling Headers.
While a great part of the web is in English, if you are targeting a worldwide audience, then neither English nor Esperanto alone is an option. This article gives a brief overview on several different ways to deliver content in both English and Spanish, and a third language.
This article will attempt to demonstrate how to connect to an LDAP server using PHP. Specifically, the example given will connect to a public LDAP server and perform searches. This example closely mimics the way NetscapeŽ Communicator 4.* uses its address book to connect to LDAP resources.
binarycloud is a platform for rapidly developing complex web applications. It includes basic services like authentication, permissions, a template engine, database abstraction etc., an extensive collection of libraries, and a framework for configuring the system and building your own logic. This tutorial step-by-step explains how to install it in details.
The author notes "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."
With this Tutorial you'll learn how to use the PDF extension in PHP4 to create PDF documents. It also puts focus on creating PDF documents with data from MySQL.
One of the things that all programmers love is to write a program which writes another program. On the web we have two different programming environments: the client (browser) and the server. Due to the HTTP protocol definition we can write a program on the server which writes another program to be executed on the client. Let's pick PHP (of course) for the server and JavaScript for the client. We'll show you in this article how you can use this scheme to store data in the client and then minimize the data transfered between the server and the browser for interactive applications like a chat room, a news system or whatever you want.