Forum Moderators: coopster
datafeed:
"This is the website title", "This is the website URL", "This is the website tracking URL", "This is the website description", "This is the website counter") ,
ereg statement:
ereg("^\"([^\"]+)\", \"[^\"]+\", \"([^\"]+)\", \"([^\"]+)\", \"([^\"]+)\")", $datafeed[$i], $matches);
Given the examples above, the ereg statement returns the following:
$matches[1] = This is the website title
$matches[2] = This is the website tracking URL
$matches[3] = This is the website description
$matches[4] = This is the website counter
Why is my ereg statement not returning 'This is the website URL' for any of the matches?
As always, thank you in advance for your replies :-)