Hi,
A little stuck here - i have a file containing info like this:
Name: Some Name Email: some@email.com
I'm using file_get_contents to read the file and then i want to get the name. I have it like
preg_match('/Name:(.*?) Email:/',$filecont,$name);
however it returns nothing.
Maybe anyone has an idea how to make this work?
Thanks.