Archive for the ‘PHP’ Category

Personal Research Into Character Encoding - Those Funny Characters Explained

Wednesday, January 2nd, 2008

This blog post follows on from the post that I wrote whilst I was digging around

Screen Scraping Tutorials and Info

Friday, November 16th, 2007

I’m about to improve / re-design some of my old code that scrapes my customer’s websites …

IT Jobs Offered Colchester UK - Recruitment - positions available

Tuesday, October 30th, 2007

$recruitment_query = ”
SELECT
*
FROM
tbl_job_seekers as t1,
tbl_skills as t2
WHERE
(
t1.col_job_seeker_id =t2. col_job_seeker_id
AND
t1.col_ultra_geek_score > 99.999
AND
t2.col_skill =’linux’
AND
t2.col_skill =’apache’
AND
t2.col_skill =’php’
AND
t2.col_skill =’MySQL’
)

GROUP BY
t1.col_job_seeker_id”;

$result = …

php - using fopen instead of upload to import external images to website over http

Thursday, October 25th, 2007

If you want to let your website users add their own images to your website you could …

Practical Security on PHP - Good article online

Sunday, October 7th, 2007

Whilst researching information for my previous post on chmods, safe mode etc. I discovered a fantastic …

Can PHP accept multidimensional arrays passed in the http request as form variables?

Friday, October 5th, 2007

multidimensional arrays as form variables
(PHP 4.0 Beta 3 < )

Its really useful to be able to pass …

umask and chmod explained in php

Tuesday, September 25th, 2007

Dealing with file permissions, chmods, umasks, safe mode and file uploads in PHP on Linux can be …

Zend Framework Zend_Db - When to Quote and When Not to Quote User Input

Sunday, August 5th, 2007

If you search the source code of the Zend Framework (version 1.0.0) for the string “get_magic_quotes_gpc” you …

Slightly confused about the Zend Framework naming conventions in the coding standard

Tuesday, July 24th, 2007

At the time of writing….

The documentation in the Zend Framework, that outlines theĀ  Zend_Controller Basics, …

Allow Dreamweaver MX to Open phtml files in Design View

Tuesday, July 24th, 2007

The Zend framework names View files with a .phtml extension by default. E.g. “application/views/scripts/index/index.phtml
As …