Archive for the PHP Category

AtMail Open – PHP Webmail Client

Posted on June 4, 2008 by 4 Comments

atmail.jpg

AtMail é uma aplicação web open source escrita em PHP. A implementação com auxilio a Ajax oferece uma interface intuitiva e bastante simples para o utilizador. Sem duvida uma opção bastante válida relativamente ao RoundCube.

Features of AtMail Open include:

  • Lightweight Ajax Webmail Interface
  • Video Mail
  • PHP source code
  • IMAP support
  • Live Spell Check
  • Address Book
  • Apache 2.0 Open Source license
  • Easy upgrade path to our commercial offering

Site / Demo

Filed Under: PHP

PHP MYSQL SMART

Posted on March 3, 2008 by No Comments

Hoje precisei de aceder a uma base de dados MySQL para efectuar um backup de uma tabela com bastantes registos. O servidor não me possibilitava acesso ao phpMyAdmin e o backup efectuado pelo cpanel retornava um ficheiro .sql vazio. Depois de várias tentativas e sem tempo para criar um script para fazer um dump à respectiva tabela encontrei on-line o PHP MySQL Smart.

O PHP MySQL Smart é um minúsculo mas funcional script em PHP que permite efectuar uma série de acções numa DB MySQL.

phpmysqlsmart.jpg

Principais Features: Login, Little Help, Database/Table/Filed browsing (NEW!), Field description, All kind of queries, Select * works also, Error messages, Number of affected rows, Multible statements (seperated with ; ), Database/Table backup via dump download, View table structure, Detail Table information, Detail Database Informatio.

Site: PowerWeb99

Filed Under: PHP

PHP Limitar String

Posted on February 9, 2008 by 4 Comments

function cortaString($string, $maximo)
{
if (strlen($string) > $maximo)
{
$string = substr($string, 0, $maximo);
}
return $string;
}

$frase = “bla bla bla bla bla bla bla bla bla”;
echo cortaString($frase, 10);

Filed Under: PHP

PHP Web Applications Part.1

Posted on January 20, 2008 by 1 Comment

PHPmotion is a free video sharing software application that will allow you to create and run your very own video sharing website. With very little knowledge required you can now have website just like youtube.com and dailymotion.com and best of all, its 100% free to download and use.

Site


PrestaShop™ is a free, open-source e-Commerce solution that allows you to open your own Internet business in just a few clicks!

Site

Filed Under: PHP

  Newer Entries »