Skip to main content

Posts

Unfortunate

Hello friends, My 2 cell phones has been theft from my Kolkata flat at night. Cell no. were 9432472083 [Cellone Anant] and 9883222432 [Smart]. I have already informed both of the customer care to immediately block there SIMs. So please do not try to contact me on these nos. Regards.

Great Visual IDE for PHP

CALIFORNIA, USA: CodeGear, provider of developer tools, has announced Delphi for PHP 2.0. Delphi for PHP is the only PHP Integrated Development Environment (IDE) for building interactive web applications using visual drag-and-drop design capabilities and a powerful PHP component framework. The new 2.0 version focuses on making PHP web development in several key areas: HTML templates with embedded dynamic PHP, enabling PHP developers to work visually in their Web 2.0 development and to collaborate easily with HTML designers Comprehensive and seamless database support for MySQL™, CodeGear InterBase®, Microsoft® SQL Server®, Oracle®, PostgreSQL, Informix®, Sybase®, SQL Anywhere® and IBM® DB2™, plus the ability to build rich data-driven web applications without requiring database connectivity coding An expanded and faster Visual Component Library (VCL) for PHP with support for popular PHP packages and libraries including Zend Framework Productivity and performance enhancements throughout i...

Stand alone EXE from PHP Project

I was finding a tools or else to make the PHP project, standalone executable for special project. I have found a very good tools amongst a few tool available. Bambalam PHP EXE Compiler/Embedder Created by Anders Hammar © 2006 Bambalam Bug reports / feedback email: Download Bamcompile 1.21 (win32) zip Download Bamcompile 1.21 Source zip Usage: bamcompile [-options] infile.php [outfile.exe] bamcompile [-options] project_directory mainfile.php [outfile.exe] bamcompile projectfile.bcp Options: -w Hide console window for windowed applications -c Compress output exe (using UPX) -d Do not encode PHP files -e:extension.dll Embed and use PHP extension -i:icon.ico Add icon to exe Revision history: 1.21 2006-08-28: Fixed an issue with apps using extensions crashing if php4ts.dll was in the system path 1.2 2006-08-24: Added an extension loader - extension dll's can now be embedded Added a project file feature Added support for exe icons UPX is now embedded, it's no longer needed in the sys...

Create Dynamic Image with PHP

Hi friend I have created a class to create the dynamic images from a string with many options from your calling page. You need to include the class file [need a ttf file to be kept in the same folder as class. Also need to change the ttf file name in class to use.] This image string are based on a true type fonts. Class file : /*** Creator : Dhiraj Patra */ class ClGenerateImage{ public $height; public $width; public $background_color; public $text_color; public $text; public $text_s; public $img; function __construct($height="100",$width="200",$background_color=array(255,255,255),$text_color=array(0,0,0),$text="Test",$text_s=35){ //Create the image resource $image = imagecreate($width, $height); //We are making three colors, white, black and gray $back = imagecolorallocate($image, $background_color[0], $background_color[1], $background_color[2]); $front = imagecoloralloca...

Tutorial for PHP , Oracle and Ajax

Creating an Ajax Process Using PHP and Oracle by Larry Ullman Use the power of JavaScript to add seamless database interactions to your Web pages. Published February 2007 For some time now, Ajax (Asynchronous JavaScript and XML), has been all the rage in the Web development world. Coming to the forefront with some of Google's features (Suggest, Maps, Gmail, and so on), Ajax performs server requests without the user having to submit a form or click on a link. In other words, the Web browser can make the server request, and handle the response, without the user doing anything or even knowing that this is happening. The immediacy that Ajax brings is not only a great convenience, but it can also be downright cool. In this recipe, I discuss all the code necessary to use Ajax to go from a simple Web page to a JavaScript function to an XMLHttpRequest to a PHP script and, finally, to an Oracle database. Along with the code, I do talk about the individual pieces with r...

Software Development Method is changing

We have seen lot of software development methodologies in last few year. Mostly changed due to web development from client server development. I also using the RAD technology throughout the SDLC but now it too changing very fast by AGIL method. Now customer want their ever changing business logic very fast and in vary short span. Even some times a business logic stayed only for a week. So web engineer required new development method the answer is AGIL. But a problem also arising due to this methodology as there are very little and almost none documentation making developer critical if not impossible to remember the logic of process and modules some times later. We can change our fast development criteria with little bit of compromise by write good code communication.