Archive

Posts Tagged ‘PHP’

Reading Excel Sheet in PHP

September 3rd, 2009 Hitesh Agrawal 1 comment

In this article we will learn on how we can read Microsoft Excel Sheet in PHP. To achieve this we will be using Open Source Tool PHPExcelReader. It provides us with necessary API that allow us to read the Excel Sheet in PHP.
Read more…

Categories: PHP Tags: ,

How to Implement Text to Speech in PHP

April 23rd, 2009 Hitesh Agrawal 8 comments

I am now become a fan of Linux Operating System. It has all the variant of softwares available either Open Source or Commercial version, and the most important is that the software also runs from command console that means we can run the application from our web application. One such application is Festival, it allows us to convert Text to Speech(WAV) format. In this article we will learn on how we can convert text to speech from PHP applications.
Read more…

Categories: PHP Tags: ,

HTML Scrapper in PHP

March 11th, 2009 Hitesh Agrawal 2 comments

Sometimes we want to extract the HTML content of the remote website page, this technique is called as HTML scrapper. This article will discuss on how we can extract the HTML content of the remote webpage.
Read more…

Categories: PHP Tags: ,

Reading Remote URL HTML Source in PHP

January 22nd, 2009 Hitesh Agrawal 1 comment

Sometime we want to pull data from remote URL and for that we have to read html source generated of the remote URL. This can be achieved using PHP by using “file_get_contents” function and CURL. In this article we will discuss how we can read remote html source using PHP both with Proxy Server and without Proxy Server.
Read more…

Categories: PHP Tags: ,

MySql Batch Insert Using PHP

January 22nd, 2009 Hitesh Agrawal No comments

Sometimes we want to insert/update multiple records into MySql Database but due to performance issue we cannot call connect to MySql for every insert/update statement. In this article we will discuss how we can perform multiple insert/update on MySql Database.
Read more…

Categories: Mysql, PHP Tags: , ,

MySql Prepared Statement in PHP

January 22nd, 2009 Hitesh Agrawal 2 comments

I am currently working on Java Platform and as i have worked on PHP before but now had to perform some task using PHP. I was wondering whether PHP also give a feature of Prepared Statement as you have in Java JDBC Connection. Prepared Statements are always better than normal statements as it prevent SQL Injection etc. This article will discuss on how we can make Prepared Statement Call to MySql Database Call using MySqli Extension of PHP.
Read more…

Categories: Mysql, PHP Tags: , ,