Hi Google, please index thse sites:
http://centralsquareballarat.com.au/
http://www.beatriceoffor.com.au/
Web, video and other stuff
Dan McKee posted a comment on this site asking if I could modify my byte calculator widget to allow decimal places. I managed to get it done fairly easily but in the end I kind of re-wrote so its better. This new version has the following new features:
Click on the screenshot to download.
I’m a bit excited about CS3 coming later this month. I’m so excited that I’ve scribbled down some of the features I’m dreaming of:
Dreamweaver:
Flash:
Sometimes when I'm developing a website I might have a string of id values that are comma delimited and want to extract related data from a database. What I could do is explode the string into an array and then run multiple queries by looping through the array. While this works find, its not ideal to query the database so many times. What you can do is loop through the array and create a single query. What I normally do is use the implode function to create the single query.
So anyway, here is some code:
So thats fairly simple, saves having a 'while' loop or a 'for' loop and concatenating a string. Its also helpful if you have multiple queries that have an additional condition. For example you might want to test if each user is active. You example...