> > My guess is that you have some whitespace after or before the <?php
> > and ?> in your note.php model file.
>

This is a very common problem. The best way to deal with it is to not
close the php tag (its optional automatically included by php when it
reaches the end of file) :

-- start of file --
<?php

class Notes extends AppModel {

  // do your stuff

}

-- end of file --


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to