Posts by Alexandree Layonel • 86 points
5 posts
-
0
votes2
answers322
viewsA: Onclick calling function javascript deletes textbox htm
the innerHTML is what is erasing the contents of Textbox previous. Instead of innerHTML, use appendChild: function novo() { var form, quant; if (parseInt(i) < 51) { form =…
-
3
votes2
answers269
viewsA: List running in order with PHP
From what I understand, your problem has more to do with Javascript than with PHP. You want the songs to be played one after the other, right? So, please, instead of using the tag embed, use the tag…
phpanswered Alexandree Layonel 86 -
0
votes2
answers80
viewsA: Error getting photo from facebook friend via PHP SDK
I tried here and this happened: I accessed https://graph.facebook.com/745290582220378/picture?type=normal&access_token=... and got the error (#12) picture edge for this type is deprecated for…
-
1
votes1
answer301
viewsA: Login with Facebook - I can’t login to the app itself with the Facebook account
Permission publish_stream no longer exists. If you need to post on behalf of the user, use publish_actions. Only developers can see permission errors, which is why you’re the only one who can’t…
-
0
votes1
answer275
viewsA: Chrome Locks File Reading
It is not Chrome. Your web server is not allowed to read local files for security reasons (Not allowed to load local Resource = It is not allowed to load local resource [file]). One way around the…