Author: Lucas

shape
shape
shape
shape
shape
shape
shape
shape
Standard

C Switch Case – How to use

You will learn how to use the switch command in C to execute a block of code based on a multiple choice selection. Below is an example of a MENU using the switch command: switch (menu) { case 1: printf(“Voce escolheu a opcao 1”); break; case 2: printf(“Voce escolheu a opcao 2”); break; default: printf(“Voce

Standard

How to Install and Configure XCache in Debian

XCache is a fast, stable PHP opcode cacher that has been tested and is now running on production servers under high load. It overcomes a number of problems that have been with other competing opcachers, such as being able to be used with new versions of PHP. Installing XCache on Debian is very simple. How

Standard

How to install Webmin on Debian

Webmin is a web-based system administration interface for Unix. Using any modern browser, you can set up user accounts, Apache, DNS, file sharing and so on. How to install Webmin on Debian? Download the latest version of Webmin using the WGET command: wget http://prdownloads.sourceforge.net/webadmin/webmin_1.580_all.deb On this page you will find the latest version of Webmin:

Standard

PHP: How to Create and Read Cookies

Cookies are data exchanged between the browser and the server, used to store user preferences, login and so on.   How to create a Cookie in PHP? // Criando Cookies $nome = “masterdaweb”; $valor = “Cookie Criado com Sucesso”; $expira = time() + 3600; setcookie($nome, $valor, $expira); $name – Cookie name. $value – The value

Latest news

Latest news directly from our blog.