Category: PHP

Radicalism?

This post was originally written several years ago, it was only as a draft and strangely remains current.

Sometimes I see on the Internet some movement “anti-Flash”, something really strange, it seems religion. There is a culture of saying that Flash is a program “to make a ball go” or that “Flash has accessibility zero, this is very far from the truth. it is possible to make extremely complex applications with Flash. And when there is a kind of “dispute” between Read more »

Adobe Flex with PHP using ZendAMF – first steps

banner_announcement
Unsurprisingly the support of Adobe technologies that integrate seamlessly with Flex. Zend, which maintains the PHP, have your ZendFramework, a package called ZendAMF to implement such an integration between Flex and PHP. In the hands of Wade Arnold, who also holds the AMFPHP.
If took me a while to start using this implementation, had already gotten used to het AMFPHP and made several systems with it. However, their adobe recommends the use of ZendAMF for building RIAS’s with Flex and PHP.
As a first example using the ZendAMF Read more »

Convert array to object in PHP

a simple way to convert array to object in PHP

PHP:
  1. <?php
  2.         function parseArrayToObject($array)
  3.     {
  4.        $object = new stdClass();
  5.        if (is_array($array) && count($array)> 0)
  6.        {
  7.           foreach ($array as $name=>$value)
  8.           {
  9.              $name = strtolower(trim($name));
  10.              if (!empty($name))
  11.              {
  12.                 $object->$name = $value;
  13.              }
  14.           }
  15.        }
  16.        return $object;
  17.     }

http://forum.weblivehelp.net/web-development/php-convert-array-object-and-vice-versa-t2.html

FLEX 2 and AMFPHP: Populating a Datagrid

Continuing the studies on Flex 2, I found this article written for Mike Potter on the integration of the Flex 2 and AMFPHP, in the example I made with that the Flex loaded the data of the article that I wrote on editing the data of a data base using Flash and AMFPHP. Read more »

Inserting, editing and excluding registers in the database using AMFPHP

Already we know how Populating a Datagrid using AMFPHP, now we will see as to insert, to bring up to date and to exclude registers of the data base being used the AMFPHP Read more »

Populating a Datagrid using AMFPHP

In the Internet we have some examples about using AMFPHP to create RIA applications. In this article we are going to create a RIA application more elaborated than a “Hello World�?, and you can use it in you real world application. Read more »

WordPress Themes


Video & Audio Comments are proudly powered by Riffly