problem about fuelphp-Collection of common programming errors
Side
fuelphp
I ran into a problem what i cant solve.i took a look at the fuelphp documentation, made it that way, but i get an error with passed waluecode$email_data = array(); //echo Config::get(‘base_url’). “user/activate/”. $user[‘hash’]; $email = Email::forge(); $email->from(‘[email protected]’, Config::get(
user489775645
apache fuelphp
I’m new to fuelPHP, I developed a simple application and when I uploaded the files to my web server I got those errors :Notice: Use of undefin
j08691
php fuelphp
echo $slot->id; $slot->players = (Model_Players::find(function ($query) {return $query->join(‘user
hakre
php fuelphp
i’m having problem when i want to validate my form in fuelphp frameworkthis is my code in controller/** for getting request param for client and save to database*/public function action_input(){$data = array();//checking method from clientif(Input::method() == ‘POST’){$val = Validation::forge();$val->add(‘name’,’Name’)->add_rule(‘required’);$val->add(‘age’,’Age’)->add_rule(‘requ
ritesh_NITW
php fuelphp
I have book model view controller and I have library controller and view . The view folder has index.php and vie
huff
upload fuelphp
I am having trouble with simple picture upload. I already tried that the uploading part separately works perfectly only after adding the Image resize functionality gives unknown error.public function post_add_image(){\Upload::process(array(‘path’ => ‘../images/’,’normalize’ => true,’change_case’ => ‘lower’,’
hims056
mysql sql join sum fuelphp
I’m having a bit of a problem with join SUM in fuel php.When I use it like this$query = DB::select(‘stream_post.*’,’SUM(stream_comment.comment_stream_id)’)->from(‘stream_
Originally posted 2013-11-10 00:08:43.