본문 바로가기

프로그래밍/PHP13

Twitter OAuth for PHP The Open Source minefield Whilst I am a huge fan of open source, one of the downsides is it can be extremely hard to find definitive information detailing which versions of packages work with each other. Documentation in general is rather patchy. Using google to search for error messages is a good way of navigating some of the pain, but good and bad advice seems to exist in equal quantities! OAu.. 2011. 5. 10.
Installing OAuth on CentOS 5.4 I've recently needed to install the OAuth libarary on CentOS for use in creating Twitter applications and using the Linkedin API. Here's how to do it. $ yum install curl-devel gcc $ yum install pcre-devel$ yum install php-pear Next, install oauth using pecl $ pecl install oauth-beta After oauth installs, you will need to do 1 of the below 2 things 1. If the directory /etc/php.d exists, create a .. 2011. 4. 25.
From MySQL to jQuery, via PHP, XML & Ajax Back in the early part of this year I posted an article around how to get MySQL data out of the database and into a web page via jQuery and Ajax. The tutorial was okay, but I made some rookie mistakes – specifically around the creation of XML data with PHP – This time, I hope to rectify that! So this article will focus on getting data from a database using PHP, converting that to an XML document.. 2011. 2. 26.
PHP로 파일 압축/해제하기 - PclZip Library PHP만으로도 zip/tar 등의 압축 방식으로 파일이나 디렉토리를 압축하거나 해제할 수 있습니다. 먼저 PclZip Library가 필요한데요, 현재 공식 사이트에는 접속이 안되어서 여기에 다운로드 링크를 걸어두겠습니다. pclzip.lib.php 파일이나 디렉토리의 압축 압축 파일의 해제 http://www.phpconcept.net 2010. 11. 25.