Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've been working with Facebook PHP SDK (v.3.2.1) to post events on a fan page. But I have some trouble passing line brakes in the array field, especially on the description field.

Since the event has to be saved on mysql for website purpose's i'm using \n but it seems to fail

$return = $facebook->api('/PAGE/events', 'POST', array(
            'name' => $_POST['title'],
            'description' => $_POST['description'],
            'location' => $_POST['location'],
            'start_time' =>  $_POST['year'].'-'.$_POST['month'].'-'.$_POST['day'].'T'.$_POST['hour'].':'.$_POST['minute'].':00-0800',
            'privacy_type' => 'SECRET'
         ));

But \n are printed on the event, i tryed to nl2br strings but again, <br> are printed on the fb event.

share|improve this question

1 Answer

You are missing array in line 1.try this

$return = $facebook->api('/PAGE/events/', 'POST', array(
            'name' => $_POST['title'],
            'description' => $_POST['description'],
            'location' => $_POST['location'],
            'start_time' =>  $_POST['year'].'-'.$_POST['month'].'-'.$_POST['day'].'T'.$_POST['hour'].':'.$_POST['minute'].':00-0800',
            'privacy_type' => 'SECRET'
         ));
share|improve this answer
okay yes thank you!!, sorry about that... still that's not my real problem – Ivan Bravo Carlos Dec 5 '12 at 21:06
It was a problem with "/PAGE/events" it should be "/PAGE/events/" with a slash at the end brrrrrrrrr – Ivan Bravo Carlos Dec 11 '12 at 13:09
ok,I just notice that,I'm missing slash('/') there I have corrected it. – Toretto Dec 11 '12 at 13:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.