Github Keyboard Shortcuts

Power of GitHub Keyboard Shorcuts Hey, this is a very quick post to share the Keyboard shorcuts that you can use in your repositories. If you are a developer, writer, or someone that have mastered the keyboard you know by this moment the great power that comes from knowing Keyboard Shortcuts. Many sites and applications … Read more

Installing Oracle 11g R2 on WIndows 7

oracleAs many of you know Oracle is the top leader on Database Performance and Management, there are many databases on the market but believe me at my Job I work with thousands of records on Oracle, I mean thousands. I will not take away the credit on the other Databases though. On this tutorial I will guide you through the installation process on Windows 7.

I am creating a PHP library to work with different databases, right now it includes connections for MySQL and Oracle, and this is why I am making this tutorial because before you connect to Oracle you must have it on you system.

I let you know that if you have installed Oracle before then this tutorial will help you only as a reference, otherwise keep reading a follow the steps.

1.- DOWNLOADING ORACLE

DOWNLOADING ORACLE

 

2.- Selecting the Windows Version.

Here you will select the version for your Operating System on this time we are selecting the 32 Bits version.

Read more

Actualizar un registro con PHP (PDO,MySQL)

Esta es la continuación de la serie de tutoriales sobre PHP y base de datos con MySQL.

En esta ocación vamos a trabajar en la plantilla que obtuvimos en Crear Tabla HTML con ID y Mostrar Información (PHP,MySQL)

A esta plantilla le vamos a aplicar un poco de estilo para que este mas ordenana. El código de la nueva tabla se encuentra en el archivo completo del código fuente de este post, que lo puedes encontrar mas abajo.

Para poder actualizar nuestro registro debemos obtener los datos de la forma y formar nuestro query. Si ya seguiste el tutorial Método PDO::prepare Obtener Resultados con Parametros ya tienes una idea de que trata el enviar información a un query de una manera segura. Para este tutorial no hay mucha diferencia en cuanto al código, sin embargo, se implementa un método para verificar que se haya hecho la inserción de una manera correcta.

1.- El primer paso que tenemos que hacer es verificar que se haya seleccionado el boton de “Actualizar”, como esta dentro del post de la forma vamos a buscar que exista este boton en el arreglo $_POST:

Read more