Feed on
Posts
Comments

Archive for the 'Web Programming' Category

Flats to Rent in Cardiff

As its coming up to the first of July and lots of people are looking for flats to rent in Cardiff don’t forget to visit Seraph Estates for the best quality properties and the highest levels of service in the area.
Established in November 2007, Seraph Estates is a new letting and estate agent in […]

Read Full Post »

As a result of feedback from our agents I’ve now added FREE board management software to the property SMS software that I’ve written.
I’ve created the system so you can make use of the board management or not. If agents use the software then the website will send out an email to their board agent […]

Read Full Post »

Instant Property Information (IPI)

 Property Information via SMS
Evilprofessor Designs have created a fully bespoke SMS application for a new company called Instant Property Information. IPI provide a service whereby instant information can be delivered to people interested in property 24 hours a day 7 days a week even when the office is closed. The system also includes a […]

Read Full Post »

I’ve just taken up a position with a new company providing property information by SMS / Text Messages. Best of all we worked out a way that we can offer this service to estate and letting agents for FREE! No ties! No contract!
How does instant property information work? Basically, a prospective tenant or house […]

Read Full Post »

Advanced Diver Training

Advanced Diver Training was a quick inexpensive website set up for a scuba diving instructor. The budget was small but this does not mean that the quality of the end product had to be low. The site was created, edited, and up and running within 3 days at a small cost. We hope you […]

Read Full Post »

Keyfinder

Keyfinder required a new online store for their business. Open source software solutions wouldn’t have provided the features that they required, therefore Evilprofessor Designs stepped in and created them a fully custom webstore with full PayPal IPN integration. Keyfinder staff can fully customise the website through an admin interface which includes updating orders and […]

Read Full Post »

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 »

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 »

Divesigns.com

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 »

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 »

Next »