If you are working on a small project and no one has the time to go in and resize all images to fit a specified area, I have a quick fix for you. This fix only works when the specified area is restricted by either height or width: img {width: 180px; height: *%; }. This […]

Hey everyone. I’m looking for a solution that will allow mp3s to play from a private directory below the public_html directory. For instance, all my mp3s are in the “/home/user/private/” directory while my web-files reside in “/home/user/public_html/”. The problem with this setup is that the client side needs a client path: “www.iaps.ca/private”, but since the

Playing music (mp3s) from ../public_htmlRead More »

We recently finished the Comda project over the holidays. We made very good time considering our busy holiday. The client is very pleased with the result and so are we. Check out this project, and all of our other client-projects, in our portfolio. FacebookTwitterPinterestDiggitEmailPrint

Holiday Hours: Our office will be closed from December 23rd to December 27th. We will re-open for 3 days (28th-30th) and then re-close for December 31st and January 1st. Drive safe, Happy Holidays and New Year! What’s new in 2010? A lot! We have 3 projects under development with 7 more starting in January/February.  We

Happy Holidays!Read More »

We are in the process of developing the new iaps.Manage application where clients have access to their account details, invoices, critical account information and the ability to monitor on-going projects, new features, issues and project files. We hope to have the NEW iaps.Manage application fully available to clients by mid March 2010. iaps.Manage, and all of

iaps.Framework(fw)Read More »

Over the last few months, iaps has laid the foundation for a tremendous amount of potential work. Within these deals, 1 of which included a b2b bartering arrangement, we have managed to procure a new logo (as seen at www.iaps.ca), new development methods and updated many features of our iaps.Framework.  With all the new work

the NEW! of iapsRead More »

Having issues with $_SESSION[‘var’]’s not being saved after you redirect the user via header()? Add exit(); after the header() call. Example: $_SESSION[’emailed’] = true; header(‘Location: response.php’); exit(); Cheers! FacebookTwitterPinterestDiggitEmailPrint

We’ve tried many different methods to set precision for a number variable (specifically a currency amount) and we’d like to share the best method we’ve found: number_format( {number}, {precision}, ‘decimal_separator’, ‘1000s_separator’ ); Example: number_format( $number, 2, ‘.’, ‘,’ ); Hope this helps! We have also tried using round( $number, {precision} ) but it ignores zeros(0)

PHP number_format()Read More »