Learner
Learner

Reputation: 960

HTML to csv file in php

I would like to read a HTML file as and convert the table content inside the html to csv format file using php.

In general, in a directory HTML, i have a list of html files say

KMC_Doctors_list_A.html  
KMC_Doctors_list_B.html  
KMC_Doctors_list_C.html  
....
KMC_Doctors_list_Z.html

I would like to read these HTML file and the write its table content to a CSV file.

Can any one help me in this regard.

Upvotes: 1

Views: 1208

Answers (1)

Roland Mai
Roland Mai

Reputation: 31077

Get ready for some reading: fputcsv will write in the csv format. But you need to understand regular expressions preg_match and preg_match_all will be very useful in the process. There's no quick way to turn html into csv.

Upvotes: 1

Related Questions