[PHP] Strange charecters

2009-03-03 Thread Chetan Rane
Hi gang I am using ob_start() in my application. However I am getting this error about headers already sent. I have put ob_start at the beginning of the script. I think this has to do something with Unicode. Can anyone explain why this happens. And whats the solution for this Chetan

Re: [PHP] whoami explanation

2009-03-03 Thread PJ
Michael A. Peters wrote: PJ wrote: Gee, thanks. So, when was I supposed to have used this alias? Hell, I can live with my ignorance. What's a POSIX system and why is it a POSIX - a language, I think I heard cd ~ brings you to your home directory. cd ~/stuff brings you to the

[PHP] ruby / rails within a php site

2009-03-03 Thread ravi Ruddarraju
I have a regular php site. I also have a ruby / rails application. Now I want to put the HTML generated by ruby / rails application within a div section of a php page. This should be similar to like calling a php function within a div section, which would produce the HTML output of the php

Re: [PHP] whoami explanation

2009-03-03 Thread PJ
Daniel Brown wrote: On Tue, Mar 3, 2009 at 18:56, PJ af.gour...@videotron.ca wrote: But I'm sorry I missed the fun earlier about the American foibles... unfortunately that should go on some other list and I wish I knew which one - one that had some smarts to it (like this one) and I'd like to

Re: [PHP] ruby / rails within a php site

2009-03-03 Thread dg
If it's html that Ruby generates, you could probably call that file as an include? Something like... $ruby = file_get_contents('rubyfile.html'); then where ever in the document you want that content use: ?php print $ruby; ? On Mar 3, 2009, at 9:56 PM, ravi Ruddarraju wrote: I have a

Re: [PHP] Strange charecters

2009-03-03 Thread Paul Scott
On Wed, 2009-03-04 at 10:09 +0530, Chetan Rane wrote: I am using ob_start() in my application. However I am getting this error about headers already sent. _Any_ output will set that error off. Check for Notices, Warnings, echo's, prints and var_dumps in your code. -- Paul -- PHP General

<    1   2