Logs for

Page 355 of 211,269, showing 20 records out of 4,225,374 total, starting on record 7,081, ending on 7,100

# At Username Text
# Aug 9th 2008, 11:45 AD7six lhy: what is your paste suposed to show?
# Aug 9th 2008, 11:45 ilove_php @AD7six - is there anyway that i can get rid of that space? :)
# Aug 9th 2008, 11:45 AD7six $this->Session is an object
# Aug 9th 2008, 11:45 AD7six ilove_php: show something
# Aug 9th 2008, 11:46 AD7six linked_: explain or show what you mean
# Aug 9th 2008, 11:48 ilove_php wait.. pasting to psatebin
# Aug 9th 2008, 11:48 linked_ AD7six: ok, in my Schedules model I have this relationship http://pastebin.com/m36578333
# Aug 9th 2008, 11:48 ilove_php @AD7six http://pastebin.com/m2aaaaeba here you go
# Aug 9th 2008, 11:48 lhy AD7six ok... seems that if I write something to the session object in index I can read it in the view. but once I set the write something in other action and redirect it index the value in session will be lost
# Aug 9th 2008, 11:49 AD7six linked_: use Teacher in your find - on what model?
# Aug 9th 2008, 11:49 lhy AD7six http://bin.cakephp.org/view/1952953037
# Aug 9th 2008, 11:50 linked_ now, in my controller, i need to have a list of instructors. so i'll do a $this->Schedule->Instructor->find('list', array('fields' => 'id', 'Instructor.first_name');
# Aug 9th 2008, 11:50 AD7six ilove_php: have you looked at yuor html source
# Aug 9th 2008, 11:51 ilove_php i looked at it a while ago and it prints out a label for my usrename
# Aug 9th 2008, 11:52 ilove_php @AD7six - is there a way for $form->input so that it won't print a label for my username? noticed that a label only shows on $form->input, but not on other form methods
# Aug 9th 2008, 11:52 AD7six ilove_php: yes. and not surprising.
# Aug 9th 2008, 11:52 AD7six password is a building block method input and inputs as the wrappers for everything.
# Aug 9th 2008, 11:53 TheBig ilove_php, just write $form->input('field', array('label' => false));
# Aug 9th 2008, 11:53 AD7six why don't you just us the form helper and modify your params to get the output you want - rather than the 1/2 and 1/2 solution you are currently doing.
# Aug 9th 2008, 11:53 AD7six TheBig: almost certainly that wont help because the question asked isn't the real problem.