Posts by Marcus Rodrigues • 113 points
9 posts
-
0
votes1
answer43
viewsQ: Data not mapped schema graphql
I would like to ask a question about Graphql. I have an API that receives certain data from the user, for example: Name, email, address and etc... and in addition to this already predefined data, it…
graphqlasked Marcus Rodrigues 113 -
2
votes1
answer87
viewsA: Save page status without refresh, after expireSession
I suggest you use some front feature, it is less costly to implement in your application. Use Session Storage or Local Storage, it is a good solution to use in your case. See you around.…
-
0
votes1
answer61
viewsA: Simple Html returns nothing?
Check if the option allow_url_fopen and is active on your server, this configuration can usually be done via php.ini.
-
0
votes1
answer403
viewsA: Recaptcha Invisible
From what I saw on the site, the problem is only in the id of your form. Try to put so and insert on your page, in this method: function onSubmit(token) {…
-
0
votes1
answer36
viewsA: Problems with PHP+ jquery
Good morning, You can use a session class, you yesterday the identifier of your product, and save in an array your complete object, right after, you send to a method that will record it in the…
-
0
votes2
answers1708
viewsA: Take data from another site, through Classname
In php you need to make some changes in php.ini to allow file_get_contents to read urls, file_get_contents has the purpose of reading files, and by chance it also accesses Urls, for this reason I…
phpanswered Marcus Rodrigues 113 -
0
votes2
answers1933
viewsA: Send email in HTML format with background image and text on top of image
Good morning, by limitation of several email readers, you can not use backgroud, I’ve broken my head to make it work however there is no way you guarantee, gmail works, but not in outlook, and in…
-
0
votes1
answer417
viewsA: Iframe does not work on android
Good afternoon friend. Unfortunately Android devices do not allow an "autoplay" in iframes, I believe the problem should happen on IOS too, this is a system limitation, to avoid data loss. The…
-
3
votes2
answers110
viewsA: List files and pick up PHP comments with PHP script
Opa, Already tried using REGEX? For example: [ FIXED ] <?php $re = '/\<\?php\r\n\/\*\r\n(.*[A-z_])\r\n\*\//is'; $str = '<?php /* File Name: exemplo */'; preg_match_all($re, $str, $matches);…
phpanswered Marcus Rodrigues 113