Linux Tutorials on the topic “php”
-
How To Harden PHP5 With Suhosin (Debian Etch/Ubuntu)
Author: Falko Timme • Tags: debian, php, ubuntu • Comments: 5How To Harden PHP5 With Suhosin (Debian Etch/Ubuntu) This tutorial shows how to harden PHP5 with Suhosin on Debian Etch and Ubuntu servers. From the Suhosin project page: "Suhosin is an advanced protection system for PHP installations that was designed to protect servers and users from known and unknown flaws in PHP applications and the PHP core. Suhosin comes in two independent parts, that can be used separately or in combination. The first part is a small patch against the PHP core, that implements a few low-level protections against bufferoverflows or format string vulnerabilities and the second part is a powerful PHP extension that implements all the other protections."
-
Using Amfphp 1.9 with the Adobe Flex 2 SDK
Author: michael_ramirez44 • Tags: php • Comments: 1Using Amfphp 1.9 with the Adobe Flex 2 SDK This article shows how you can make PHP interact with Adobe Flex. Adobe Flex is a technology to support the development and deployment of rich Internet applications based on their proprietary Macromedia Flash platform.
-
Building Apache with PHP, MySQL, OCI8 instant client support
Author: nayyares • Tags: apache, php • Comments: 2Building Apache with PHP, MySQL, OCI8 instant client supportThere are many howtos on building Apache with PHP, MYSQL support, but it is very rare to find some document on OCI8 support with Apache Build, recently I was building a web server in my data center and I was really in trouble when I was searching some installation document, there are few documents , but most of them are using either RPM version of packages or they are missing some of the essential steps. I am trying to write a howto that will help you to at least understand the installation with step-by-step method.
-
-
How To Install KnowledgebasePublisher On Your Site
Author: sridhar • Tags: mysql, php • Comments: 1How To Install KnowledgebasePublisher On Your Site This is a step-by-step tutorial on installation of KnowledgebasePublisher, an opensource knowledge base, FAQ script that you can install on your web site.
-
Detailed Guide On Arrays In PHP
Author: haroon • Tags: php • Comments: 14Detailed Guide On Arrays In PHP Here is yet another article of Fast PHP Articles Series. Today we are going to discuss ARRAYS. We will learn its syntax, its different types, the different built-in array functions that help to perform different tasks related to arrays quickly and different practical examples explaining the use of arrays in PHP.
-
Loops In PHP
Author: haroon • Tags: php • Comments: 0Loops In PHP There are certain conditions in which you need to execute the same block of code again and again. Here we can use Loops to write few lines which will print more output depending on our loops condition.
-
Decision Making Using PHP Switch Statement
Author: haroon • Tags: php, php • Comments: 0Decision Making Using PHP Switch Statement Today I am going to discuss Switch Statement. The basic concept of Switch is similar to the IF-ELSE statement; it helps you to write decision making code just like IF-ELSE but it is a little more organized, elegant and handy when dealing with complex logics as compare to IF-ELSE.
-
Setting Up A News-Voting Website With Pligg
Author: Falko Timme • Tags: apache, php • Comments: 2Setting Up A News-Voting Website With Pligg This article shows how to set up your own news-voting website with Pligg. Pligg is a content-management system published under the Affero General Public License, and it is written in PHP and uses a MySQL database for storing its data. With a little work you can create your own community and let users vote news to the front page.
-
Decision Making Using IF-ELSE In PHP
Author: haroon • Tags: php • Comments: 4Decision Making Using IF-ELSE In PHP Today we are going to study the tools that will help you to write Decision Making Codes in php. For example, when you sign in to orkut.com you see a message ‘hello username’ on the upper right of every page. Similarly when you login to gmail if you provide wrong username or password you see an error message and if you submit accurate information you are taken to the inbox. If you think deep on these events, this is what we call ‘decision making code’. your write intelligent code that can make decision on user’s input and can act accordingly to the input to produce required output.
-
Operators In PHP
Author: haroon • Tags: php • Comments: 5Operators In PHP This article is the second of a series of PHP guides that aim at teaching you the basics of PHP programming.