Archive for the 'programming' Category

How to: Replacing with CSS equivalent

March 2nd, 2011

Today i get new problem, how to add simple image properties by CSS. On CSS, you don’t simply put HTML attributes into a stylesheet. CSS has its own properties that only occasionally overlap with obsolete HTML attributes. There is no such property as ‘align’ or hspace/vspace in CSS. You are looking for the ‘float’ and [...]

Web form to Custom Module

March 1st, 2011

I need capture info from web to my custom SugarCRM module. After some modification i use “Web to lead” script: require_once(‘modules/MyModule/MyModule.php’); if (… we are saving custom Module …) { $myinfo = new MyModule(); $myinfo->phone = $_REQUEST['phone']; $myinfo->fax = $_REQUEST['fax']; $myinfo->email = $_REQUEST['email']; // etc… $myinfo->save(); } // done! i f somebody have better soltion [...]

sport pick’s

January 20th, 2010

Your favourite team is playing today? You want to bet but you are not sure who the winner will really be and what are your chances of winning a bet? Get your answer right now:  http://www.freewinnersnow.com. This web site is one of our latest completed tasks. It is a nice and simple web page devoted [...]

Go: A New Programming Language from google

November 12th, 2009

Google released a new, experimental programming language. People working in Google believes programming should be fast, productive, and most importantly, fun. Go combines the development speed of working in a dynamic language like Python with the performance of a compiled language like C. Typical builds feel instantaneous; even large binaries compile in just a few [...]

« Prev