







E-Business articles (B2B and B2C) - E-Commerce (open source and commercial)
Web Development Frameworks
ERP and CRM systems
Tools and advice for your daily activity
/* * * Because php 4 does not have a proper OOP implementation * here is a way to have php4 destructor and constructor * */ class demoClass { // {{{ constructor /** * php4 class contructor * * @return object */ function demoClass() { //destructor register_shutdown_function(array(&$this, '__destruct')); //constructor $argcv = func_get_args(); call_user_func_array(array(&$this, '__construct'), $argcv); } // }}} // {{{ __construct() /* * constructor function implementation */ function __construct() { //code for constructor goes here } // }}} //{{{ __destruct() /* * destructor function implementation */ function __destruct() { //code for destructor goes here } //}}} }
import serial #open second serial port, 0 for the first ser=serial.Serial(1) #loop forever while 1: s=ser.readline() fileLog=open('serial_log.txt','a') fileLog.write('%s'%s) fileLog.close() ser.close()
Will see how this will add value to my resume... Anyway, just wanted to test my web developer skills, and it seems on on the right path. This was an intro for the next test I want to take, Zend Certified Engineer, but I'll have to prepare financially for this one...
After Brainbench games, Romania got 3rd place... Not bad... I'm glad I could contribute to that.- install location c:\www [default c:\program files\apache group]: so it will install c:\www\apache2 - Hostname: localhost or your IP address - Listen: 80 - admin email address: youremail@address.com - finalize installCreate the folder: c:\www\htdocs Unzip php-4.3.10-Win32.zip to c:\www\php4 Copy [or cut] c:\www\php4\sapi\* to c:\www\php4\* Rename php.ini-dist to php.ini and edit it:
; The root of the PHP pages, used only if nonempty. ; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root ; if you are running php as a CGI under any web server (other than IIS) ; see documentation for security issues. The alternate is to use the ; cgi.force_redirect configuration below doc_root = c:/www/htdocs ;........................... extension_dir = "c:/www/php4/extensions" ; Uncoment eny extension that you may need extension=php_xslt.dll ;............... display all error except notices error_reporting = E_ALL & ~E_NOTICE ;displaying script errors: display_errors = On ; if you are using for production is it recommended to be set to OffNote: php_xslt.dll requiers sablot.dll [placed under %WINDIR%\system32] php_exif requires php_mbstring.dll loaded BEFORE. For other extensions check documentation first. Copy php.ini in your %WINDIR% directory [that is c:\windows or c:\winnt] Configure apache to handle php scripts: Open and edit c:\www\apache2\conf\httpd.conf
ServerRoot "C:/www/Apache2" #....edit Listen 80 #.....ad the line LoadModule php4_module /www/php/php4apache2.dll #....edit ServerName localhost:80 #...edit DocumentRoot "C:/www/htdocs" #...edit DirectoryIndex index.html index.php default.php index.html.var #add the lines: AddType application/x-httpd-php .php AddType application/x-httpd-php-source .phpsSave it and restart Apache [Apache Monitor->Apache2->Restart]. MySQL: Unzip mysql to c:\www\mysql and run c:\www\mysql\bin\winmysqladmin.exe, set root password and you will have mysql databaser server running. I also recommend phpMyAdmin for querying and administering mysql server. Now testing instalation: create a file index.php in c:\www\htdocs and put the following content: <? phpinfo(); ?> then open your browser and go to: http://localhost/ and you should see: