PHP SOAP Client Example

| Webtraffic Exchange

PHP Soap Client Example

Using the SoapClient in PHP allows you to interact with SOAP (Simple Object Access Protocol) web services. Here's a basic guide on how to use the SoapClient in PHP.

Programming

Read More +
Malware Detected on Website

| Webtraffic Exchange

Malware detected on website

One of the servers we manage has been compromised, and hosting malware according to Kaspersky Anti-Virus software. The site uses a number of open-source applications such as WordPress, Gnuboard, and phpLinkDirectory. We...

Cybersecurity

Read More +
Zend Framework without MVC

| Webtraffic Exchange

Zend Framework without MVC

The reasoning for using a framework such as Zend Framework (ZF for short) is to speed up the development process, make the application extensible, and make use of the design patterns such as MVC. I think MVC is great, it...

Framework

Read More +
Test form submission in PHP

| Webtraffic Exchange

How to test if a form is submitted in PHP?

We live in a very busy world, and sometimes we try to get things done quick-and-dirty. One of the most popular examples is to create a PHP script that renders a view and also handles form submission (action). So, what is...

Programming

Read More +
Multiple Constructors in PHP

| Webtraffic Exchange

Multiple Constructors in PHP

In most object-oriented programming languages such as Java, C++, and C#, you can define multiple constructors each having different signatures. The class calls the correct constructor based on the number of parameters, a...

Programming

Read More +