Extracting Data
Posted: Thu Jul 22, 2004 12:25 pm
Is there anyway to extract certain data from an html form using php.
For example if I had:
And I wanted to extract everything which was in between the <td> </td> tags. This is a project where I want to extract the data from uploaded files into the mysql database so any help appreciated.
Joe
For example if I had:
Code: Select all
<html>
<body>
<table width="500" cellpadding=3 border=0>
<tr>
<td>Joe Joe</td>
<td>8 Times Street, WorldGlobe</td>
</tr>
</html>
</body>Joe