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…
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…
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…
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…
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…
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…
I am working in a php module where in i need to generate unique session-id whenever user request the page. After searching and trying permutation combination i manage to find the script. This article tells you how we can generate unique session id for every request.
Read more…
This example demonstrates HTTP FORM POST complete HTML form to the server and displaying the response using AJAX.
Read more…