background preloader

Librerías PHP

Facebook Twitter

PHP QR Code - QR code generator, an LGPL PHP library. PluginR. See also r.tiki.org This Wiki Plugin provides an interface to run R scripts through web pages.

PluginR

PluginR allows basic and direct usage, writing the script between the PluginR tags (see below), but it also allows advanced usage, where Pretty Trackers can be used to make web interfaces to modify the parameters that you want to allow the user to modify before producing the text or graphic output from your scripts. Or you can send full data files to your R script to be processed and get the output automatically on-line a few seconds later. This way, Tiki and PluginR become a nice and collaborative web interface for your custom R scripts. Is this your first time to R or Tiki? New to R? For more information, see: New to Tiki? To run Tiki you need: A XAMP stack (Linux/Mac/Windows + Apache web server + Mysql database server + PHP programing language). Installation This plugin is not installed by default in Tiki (it's GPL licensed, while Tiki is LGPL licensed), and it can be obtained from Mods. or 1. 2. .

JpGraph - Most powerful PHP-driven charts. Gallery Line Plots Line plots can be easily adapted to almost any needs, it is possible to adjust colors, transparency levels, line weight, line type (solid, dotted, dashed etc), backgrounds, scale, axis positions and formatting.

JpGraph - Most powerful PHP-driven charts

Filled Line Plots Line pots can also be filled both with a solid color, a semi transparent color or a gradient fill (both horizontal and vertical). The fill can also be one or several vertical band between two X-values. Step Line Plots A variant of plain line plot is the stepped line plot where each data point is connected by two 90 degrees link as is illustrated below. Line Plots With Markers Data values for line plots, scatter plots, radar plots etc. can be emphasized with either one of the multiple builtin markers (both plain and 3D) or if that is not enough it is also possible to use an arbitrary image as marker.

Line Plots With Inverted Y-axis Line Plots With Values It is of course possible to show the value of each data point for both line, bar, pie plots etc. SimpleExcel.php by faisalman. Dependencies Installation If you're using Composer to manage libraries, include this package in your composer.json If you want to try version 0.4 (still in develop branch) you can use Or just load this library in your PHP project by including SimpleExcel.php require_once('..

SimpleExcel.php by faisalman

Usage Example Prior version 0.4 use SimpleExcel\SimpleExcel; $excel = new SimpleExcel('CSV'); $excel->parser->loadFile('test.csv'); echo $excel->parser->getCell(1, 1); $excel->convertTo('JSON'); $excel->writer->addRow(array('add', 'another', 'row')); $excel->writer->saveFile('example'); Version 0.4 Get specific content from CSV file. FPDF. JpGraph - Most powerful PHP-driven charts. JpGraph, Como guardar la gráfica en un archivo tipo PNG (imagen) PHP. Hola saludos a todos, antes de empezar quiero aclarar que en esta entrada solo vamos a ver algunas lineas que nos ayudarán a que la gráfica que hemos creado se almacene en alguna ruta con formato PNG para poderla visualizar posteriormente o cargarla posterirmente más fácil.

JpGraph, Como guardar la gráfica en un archivo tipo PNG (imagen) PHP

Así que, si lo que deseas querido lector es saber como crear la gráfica te recomiendo que visites las otras entradas del blog. Ahora por que queremos guardarla como imagen, ¿Que no ya es una imagen? Hasta ahorita se podría decir que no, por que como lo hemos estado manejando, la ruta que le damos al objeto <img> es la del archivo php en donde generamos la gráfica, cada que queremos ver la gráfica se desarrolla todo el proceso, y si tienes varias gráficas que serán estáticas pues lo mejor es correr un solo proceso generar la imagen y solo cargar la imagen o tambien te puede servir en el caso de que quieras dar la opción de descargar la gráfica.

Librería cURL en PHP. Introducción: Conociendo la librería cURL ¡Hola a todos!

Librería cURL en PHP

Despues de un mes de bastante trabajo y poco tiempo libre para escribir, vuelvo a la carga con un nuevo tutorial en PHP. Quien no conozca la librería cURL, igual se ha preguntado muchas veces cómo hacen los sitios web para mostrar contenido de otras páginas en la suya. Por ejemplo, se preguntará cómo funciona la famosa aplicación que revisa los links escritos en el texto de una web y muestra una previsualización en miniatura. O sin ir más lejos, puede que alguna de estas preguntas pasen por su cabeza alguna vez: ¿cómo imprimes en una web el contenido RSS de un dominio ajeno? cURL te permite crear conexiones con distintos protocolos bajo distintos SO para poder conectar tus aplicaciones con otros entornos, como el web, Active Directory, etc Es tan potente y fácil de usar, que podemos crear sin muchos problemas un crawler que recorra páginas web para analizar información, al estilo de por ejemplo el Google Bot.