I don't know if this is enough data to feed off of, but I have
preg_match('/SAMPLETEXT/', $bcurl, $cookie1);
and I was wondering if I can make it
preg_match($newfunction, $bcurl, $cookie1);
but when I do, I get this error "Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in".
How can I make it check for my new function, rather than have it check just for "SAMPLETEXT".