I got a new wallpaper of PHP Warior. This is cool when I keep it as desktop background
Click here for higher resolution: http://www.deviantart.com/deviation/38526422/
I got a new wallpaper of PHP Warior. This is cool when I keep it as desktop background
Click here for higher resolution: http://www.deviantart.com/deviation/38526422/
SOAP Introduction
SOAP is a protocol for applications and servers to communicate with each other. Its primary use in PHP is exposing Web services and building Web service clients. As a protocol, it can exchange messages over HTTP/HTTPS, which helps it get around firewalls that would block other protocols (eg, Remote Procedure Call). As an application layer protocol, SOAP is also entirely platform independent — your PHP Web application can talk to a Java database server, for example, as long as [...]
Have you thought of creating excel files using PHP?
You use these classes to generate your excel files. Pretty simple, but very effective.
Start with downloading (registrate for free to download), here http://www.phpclasses.org/browse/package/1919.html .
Unzip and upload the file named excel.php to your server.
I am going to generate a simple excel file that will contain Name and IQ in two columns
The file will look something like this (Hopefully):
First name IQ
John 2250
Ram 1200
Steve 1200
Vinod 1200
Create the php file that will create the excel files [...]
The .NET development framework facilitates writing applications in more than one programming language like VB or C#. While writing a .NET application, you can always opt for a language of our choice. You can even write each module (say a Windows form or a Web form) of an application in a different language. On the other hand, PHP is a popular open
source scripting language which is used typically for writing Web based applications. Being a scripting [...]
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.
I have tried on Windows Installation. Need to check on linux
The following configuration has been tested with Apache 1.3.12, PHP 4.0.3 binaries from www.php4win.de [...]
Why you would want to send SMS Through HTTP?
The more and more you see and read about how other websites are using SMS, the more and more you begin to wonder why you’re not. So I’ll show you how (in PHP, because it’s the only language i know!). Although it is possible to send SMS via e-mail, which I might cover another time.
This tutorial focuses on the use of HTTP methods “get” & “post”. For those of us that may not [...]