Posts by PauloMaia • 149 points
14 posts
-
1
votes0
answers143
viewsQ: Laravel - Error "Tokenmismatchexception" - Form?
Why Laravel keeps giving error after form Ubmit, even inserting in form. {!! csrf_field() !!} Even so this giving the erro === TokenMismatchException Localhost - xamp - W 7 32 bts - PHP 7.2.0 in…
-
4
votes1
answer5031
viewsQ: Conversion of Website or PHP or HTML system to Android and iOS app
What is the best way to 'convert' a website or PHP or HTML system to a Android and iOS app ? I have a PHP Script with DB Mysql and HTML site , and I’ve heard that you can generate the version of the…
-
1
votes0
answers392
viewsQ: Change TLS version in PHP upload
My submission is returning this error ... Warning: file_get_contents(https://webto.salesforce.com/servlet/servlet.WebToLead...): failed to open stream: HTTP request failed! HTTP/1.1 400 TLS 1.1 or…
-
0
votes1
answer77
views -
0
votes1
answer487
viewsQ: Ajax + Php Pass Variable
How can I send a variable through Ajax and recover the value in PHP? <script type="text/javascript"> setInterval(function(){ $.ajax({ async: true, url: 'contalog.php', dataType: 'html', type:…
-
0
votes2
answers1179
viewsQ: .htaccess change extensions . php and . html automatically?
I’m using my htaccess like this # Hide .html or .php extension ## External Redirect RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s([^.]+)\.php [NC] RewriteRule ^ %1 [R,NC] ## ## Internal Redirect…
-
0
votes1
answer116
viewsQ: .htaccess on Plesk Linux or Windows
My file . htaccess does not work , I saw this help link but how to adjust in my . htaccess ? *The site opens goes through index.php but when it is redirected to the login gives No input file…
-
0
votes2
answers446
viewsQ: PHP in Browser Write , Read and Update . txt , Locally
In Client Browser ! Locally... How can I create and save to a file . txt local on the client machine the value of two variables String . This script is in the login and whenever the login is done…
-
1
votes2
answers212
viewsQ: How to manipulate the string coming from a . reg file exported from regedit?
How to abstract the values of these individual parameters and store in a variable, or use to compare with another variable ? Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SYSTEM\leroLero]…
-
1
votes1
answer388
viewsQ: How to write and read windows registry data with php?
I need to write and read data in windows registry with php , how to do ?
-
1
votes1
answer129
viewsQ: File . reg or . txt in windows
How can I in PHP create a . reg or . txt file in a location e.g. ( HKEY_LOCAL_MACHINE ) and insert into it the value of two string variables $minhaVarReg01 and $minhaVarReg02 . And later open this…
-
-2
votes1
answer155
viewsQ: Function Mouse Screen
That function that captures mouse movement does not work , what is wrong in it how to fix ? <script> $(document).bind("mouseleave", function(e) { if (e.pageY - $(window).scrollTop() <= 1) {…
javascriptasked PauloMaia 149 -
0
votes1
answer211
viewsQ: Div Centralizada
This div of mine is not in the middle of the screen, this wrong CSS style ? <div style="position:absolute;margin:auto;"> <img src="assets/img/PHP.png"/> </div>…
-
0
votes1
answer34
viewsQ: Extract Key Result
I have this function ....... $client = new SoapClient('http://wss........N.asmx?wsdl'); $funcao = 'ConsultarUsuario'; $argumentos = array($funcao => array( 'ChaveUsuario' =>…