17 feb. 2010 : PHP-GTK Application descriptions can now be submitted in Brazilian Portuguese too. Thanks Bruno Bandeira !.

German and Italian still missing: who will contribute the translated categories for these languages ? Contact the team to offer your translations !

Linux

FriFinans

screenshot for Frifinans FriFinans is an accounting/bookkeeping/ERP system for medium sized companies that are not satisfied with web-type systems and who needs an cross-platform, client-server, multi-user system with a fast and rich-featured client.

FriFinans (the application) is available in both english and danish (via locales) - only the official website is in danish (new website will be coming up soon!)

Code completion for PHP-GTK in Netbeans

Jose Antonio Bayona Medina has put up a slideshow demonstrating how to use the basic technique outlined in this chapter to add PHP-GTK 2 autocompletion in Netbeans 6.7.

CairoForPHP Samples

Screenshot for CairoForPHP Samples in desktop environment CairoForPHP is an application that demonstrates several functions of the Cairo implementation for PHP. It uses a technique with which, from the same source, it can run both as a desktop application with PHP-GTK and as a web application in a webserver, thus demonstrating how PHP-GTK can be used as "just one" method of output and integrated into multi-platform, multi-environment applications.

PHP-Editor

screenshot for <application name> PHP-Editor is a program developed in Php-Gtk using Glade and GtkBuilder.

This is a very structured program that allows up to 9 tab (which is the point of having more?), the usual options of a text editor but with the code and highlight the most important thing is the tooltip on the traditional functions of PHP with their explanation.

The package contains the generator to the database of words that must be written in a particular way and is controllable from the command line in order to compress.

PHP-GTK + pcntl_fork()

Hi. Code:

<?php
$window
= new GtkWindow;
$window->set_size_request(200, 100);
$window->connect_simple('destroy', 'Gtk::main_quit');

$pid = pcntl_fork();
if (
$pid == -1)
    exit(
"Error\n");
else if (
$pid)
    echo
"parent\n";
else
    echo
"child\n";

$window->show_all();
Gtk::main();
?>

Run: the program crashes and displays an error:

parent
child
The program 'index.php' received an X Window System error.
This probably reflects a bug in the program.
The error was 'BadIDChoice (invalid resource ID chosen for this connection)'.

Notepad with GtkSourceview

screenshot for Notepar with GtkSourceview Notepad with GtkSourceview is a program developed in Php-Gtk using Glade.

To use it, you must have PHP-GTK 2 installed on your PC, just do a search on the internet so you can discover.

This is a modified version of notepad made from kksou. But with gtksourceview and use its property for the editing of code in this case was set php.

Syndicate content