thanks for reply sir
for example
$url = file_get_contents('http://www.example.com)
$content = explode("<td>"$url);
then $content look like this
array=>
$content[0];//it contain City
$content[1];///it contain Street
$content[2];///it contain Country...there are times that this array include the hidden html tag.. heres the record in my database
City | Country
| ADELAIDE | AUSTRALIA</td></tr></tbody></table></div><div style="clear:both; paddi |
If you take a look at country column you will see </td></tr></tbody></table></div><div style="clear:both; paddi..
how can i strip that before i insert it?