Programming

Business application development – how GWT can help improve your business

Posted on 2011-11-10 06:41:43, by Derek Mansfield in ComputersProgramming

postimage

Bold Endeavours is a web development agency with profound experience starting in 1992.   Today we have a team of dedicated, expert professionals who develop for web and desktop platforms.   Business application development is our main business and is used in various schemes and spheres of production. We have software development solutions for:   Small businessEnterprisesCRM businessesB2B businessesB2C businessesE-commerce businesses   Whether you need an application for your in-house needs or for improving relations with your customers Bold Endeavours has software solutions for any type of needs.   You can profit from using modern technology solutions for optimising and automating business processes. Documentation storage, ordering and security, financial operations, tasks and time management, reporting systems, security systems - business applications are called to solve these and many more tasks.                                                  What are the features of a good business application? In every case it has to be reliable functionality and easy ... Read More

Programming

How to set cookies and unset cookies with PHP

Posted on 2011-03-17 12:22:48, by Daniel in ComputersProgramming

postimage

What are cookies and where can we use them.Cookies are small tidbits of information kept on a client's computer so when they visit the next site cookies are retrieved by the website that set those cookies.We can use cookies to store username, passwords, basically used in credential systemsTo keep track of a users progress. Example: shopping cart, item id's can be stored in cookiesUser settings can be kept in cookiesThe list can go on.Setting cookies with PHP is very simple.Here is an example code:setcookie('aid','1',time()+3600*24*10,APATH,DOMAIN); Now let's explain this function a bit:We are setting a cookie aid with the value of 1 that will be available for 10 days (time()+3600*24*10) is only available to the path we are setting it and the domain that we specified.Here's how we can unset a cookie:setcookie('aid', ... Read More