| TOTAL: 2 Page: 1 of 1 |
|
Get MySQL database layout in XML format 1.0
In this tutorial I will show you how to get your MySQL database description / layout in an XML format. If you are an absolute beginner in XML than it can be useful to read first an XML introduction tutorial.

| Hits: | 14 | Platforms: | Linux Mac Sun Windows |
| Ratings: | Last Updated: | 2007-04-20 |
Making XML/XSLT driven site using PHP
XML and XSLT technologies provides standard ways of separation of presentation and data. This article contains an example of simple php "xslt engine" for XML driven web-sites which implements caching techniques and Apache-based XML file processing.

| Hits: | 13 | Platforms: | Linux Mac Sun Windows |
| Ratings: | Last Updated: | 2007-04-20 |
Parsing XML Into an Array With PHP
XML is a markup language that lets you describe nearly any type of data. Examples of it are RSS, and Atom feeds. Many web services provide API data in the form of XML. It's a format that's easy to understand, even for the non-nerds. In this tutorial, we're going to have a dummy XML document, and then use PHP to parse it into in an array. Our XML will contain a list of songs currently in our playlist, complete with artist names and a rating. From there, PHP will load it, then do it's thing by

| Hits: | 141 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-10 |
XML and PHP - It is a good format to store and share any kind of data
After the hype, the Extensible Markup Language (XML) is now really used almost everywhere. An application that receives a lot of buzz is Web Services, a technology that is covered in detail in Chapter 9, "Communicating with Others." However, XML can be used elsewhere, as well. It is a good format to store any kind of data. The tasks behind using XML are always the same: reading data from XML and writing data into it. So this chapter focuses on these tasks and shows how to implement them. U

| Hits: | 56 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-10 |
Dynamic ATOM Feed - Create your own PHP and MySQL ATOM Feed
As a compliment to my RSS feed, which has driven a very large amount of visitors to my site, I'm backing it up with the other syndication feed that people are using; ATOM. It follows pretty much the same steps, so this guide will walk you throw it much like the RSS one did. You might notice there isn't an ATOM feed on my site at the time of writing, but there will be come the CSS Fall Reboot of 2005. First step we're going to do is make a file called 'atom.php'. You can name it differently, but

| Hits: | 94 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-10 |
PHP SOAP Extension
PHP SOAP Extension is one of the most popular PHP implementations of SOAP 1.1 and 1.2, developed by The PHP Group. What are the features of PHP SOAP Extension? I don't known. I tried to find the feature list on the Web, no success. How to install PHP SOAP Extension? It is included in the PHP 5.0.4 package for Windows distributed by Zend Technologies. See previous notes on details of how to install the PHP package and the PHP SOAP Extension.

| Hits: | 54 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-10 |
Transforming XHTML with str_replace
str_replace() is a function used to replace strings. As in string_replace, right? A practical example of this is my script HTMLTransformer. What it is is a couple of functions that replace bits of code with other bits of code. Why would you want this? Well, take these tutorials. If I want to display some XHTML code I need to use the following symbols: < and > . But, to display, say without having it think that I mean that to be code, I need to use HTML entities

| Hits: | 52 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-10 |
Transforming XML with XSLT and PHP
In one of my previous tutorials, Processing XML with PHP, I introduced you to the expat XML parser. The parser is sufficient for extracting information from an XML document and manipulating it in a simple event based manner. However, there may be times when it's desired to transform the XML document into a different format using XML StyLesheet Transforms (XSLT). XSLT is essentially a series of templates and rules for XML. It processes a document by applying the template patterns according to

| Hits: | 101 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-10 |
Processing XML with PHP
A markup language is a collection of directions and special symbols that are inserted throughout a document. These directions can identify special sections of a document and further define the information's background and meaning. A commonly used markup language on the Internet today is Hyper Text Markup Language (HTML). HTML directions (which are known as elements) are interspersed throughout a text file that can then be viewed by a web browser program. The elements can affect the formatting

| Hits: | 116 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-10 |
PHP And XML Introduction
XML seems to be the buzzword not only inside IT community but far beyond it. Everybody is overwhelmed with this technology, which is sometimes said to be markup language of future. Whether it is true or not, we may be pretty sure that XML (if a little bit emended) is here to stay. So, it does better not catch you by surprise! This tutorial discusses how XML and PHP can be used together. Prerequisites I am not expecting you to know XML. There is an introduction to language in the firs

| Hits: | 108 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-10 |