Posted in Articles, Web Programming on Oct 26th, 2007
I’ve come up with a problem recently returning data via an XML feed using AJAX. In my case I was returning a list of images each having several links to perform various tasks (e.g. set as main image, add as thumbnail, add full image, etc).
The first load would go through fine and all images […]
Read Full Post »
Posted in Articles, Web Programming on Oct 25th, 2007
A quick and easy way to protect yourself from mySQL injection attacks in PHP is to use…
$sql = “insert into table set “;
foreach ($_POST as $key => $data)
{
$sql .= $key.” = ‘”.strip_tags(htmlentities(addslashes($data))).”‘,”;
}
$sql .= mysql_query(rtrim($sql,’,').”;”) or die(mysql_error());
What this script does is to take your $_POST data and remove anything malicious from it. Looping over […]
Read Full Post »
Posted in Portfolio on Oct 1st, 2007
Dive Signs required a low cost solution due to being a start up company. Dive Signs are a family run business based in Essex they sell highly reflective vinyl stickers for the scuba diving industry. The solution for Dive Signs was a customised install of Zen Cart, the entire site took less than one […]
Read Full Post »
Posted in Articles, Web Programming on Sep 26th, 2007
I’ve used my RSS feed generator on a few sites now, so I figure it’s about time I share. The final output validates and conforms to RSS2.0 standards so it will import into most things. I’ve even got mine linked to my facebook profile. The full code is at the bottom of the page.
Basically […]
Read Full Post »
Posted in Portfolio on Sep 1st, 2007
Evilprofessor Designs have completed several small contracts for Legal & General and continue to provide last-minute solutions as and when required. All work has been well received and we continue to maintain good relationships with Legal & General.
Legal and General
Read Full Post »
Posted in Portfolio on Aug 1st, 2007
We are currently creating a huge bespoke website application for Seraph Estates. It is designed to control all aspects of their business which includes property rental, sales, serviced lets and holiday cottage rental. This is a long term on-going project with frequent updates. Website relies heavily on AJAX/Web2.0 technologies to provide a responsive web application […]
Read Full Post »
Posted in Portfolio on Jul 1st, 2007
Cardiff Scuba came under new ownership in 2006 and at that time decided that a whole new website was required. For Cardiff Scuba we built a completely customised web application. The backend of the website allows full control including a booking system for courses. The site was designed with future expansion in mind and […]
Read Full Post »
As some of you may know I’ve been trying to get my web design company up and running properly so today I finally launched the website for the company (screen grab below). The website address is www.ep-projects.co.uk. Fingers crossed all goes well and more business starts rolling in as a result
Read Full Post »