[PHP] How much could you charge for a PHP-MySQL Spanish online course?

2001-03-04 Thread akio
Hello everyone! How do you charge these things, per words? The amount of time spent? I've never done this and I'm quite clueless. Any ideas would be really appreciated. TIA Regards -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

[PHP] regex : Extracting parts of a string :-???

2001-02-11 Thread akio
Hello everyone, I have a string like $thestring = "\"Hello everyone\" bye"; What I want to extract is: Hello everyone. Instead I get: bye. I use this command ereg("([^\"\"]*)$",$thestring,$regs) and echo $regs[1]. How can I extract what's within double quotes? TIA Regards -- PHP