Personal Research Into Character Encoding - Those Funny Characters Explained
Wednesday, January 2nd, 2008This blog post follows on from the post that I wrote whilst I was digging around …
This blog post follows on from the post that I wrote whilst I was digging around …
I’m about to improve / re-design some of my old code that scrapes my customer’s websites …
$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 = …
If you want to let your website users add their own images to your website you could …
Whilst researching information for my previous post on chmods, safe mode etc. I discovered a fantastic …
multidimensional arrays as form variables
(PHP 4.0 Beta 3 < )
Its really useful to be able to pass …
Dealing with file permissions, chmods, umasks, safe mode and file uploads in PHP on Linux can be …
If you search the source code of the Zend Framework (version 1.0.0) for the string “get_magic_quotes_gpc” you …
At the time of writing….
The documentation in the Zend Framework, that outlines theĀ Zend_Controller Basics, …
The Zend framework names View files with a .phtml extension by default. E.g. “application/views/scripts/index/index.phtml”
As …