Posts by Fernando Rangel • 131 points
11 posts
-
0
votes1
answer436
viewsA: Horizontal timeline as you scroll down
Have the Materialize framework that has this Feature that you want ready. Just use. Following link from Feature: http://materializecss.com/scrollspy.html. To use, you will need to import CSS and JS…
-
2
votes1
answer49
viewsA: Character counter back to default value
puts an "onclick" on the button for when it is clicked, the counter changes to 4000. ex: onclick="javascript: $('.caracteres').empty().append('<span>4000 Caracteres</span>')"…
-
0
votes1
answer88
viewsA: Send posts from Wordpress sites partners to my site
There is a table in the database that stores the posts (I don’t remember the table name, but I think it’s somePosts). Just pass this data to another bank...
-
0
votes1
answer20
viewsA: Insert an array within the method call
Try this one: exchange this "for($i = 0; $i < Count($customer name); $i++)" for this: foreach($nomeCliente as $nome) { $métodos->cadastrarPaxSingle($nome); }…
phpanswered Fernando Rangel 131 -
0
votes1
answer74
viewsA: Send multiple calls to Soap in php
You can use a repeat loop, follow: in the following example, it is necessary that the arrays are in mutual order. in the ex: registration=0001, registration=99999, anything=34563, variable=34534…
phpanswered Fernando Rangel 131 -
2
votes1
answer624
viewsA: Comparison of values with SELECT
This is the SELECT: SELECT * FROM estabelecimentos WHERE nome LIKE '%suaVariavel%'
-
0
votes2
answers1239
viewsA: How do I make it open a Pop-up by pressing a button?
I recommend using the library colorbox The link shows how to use the library and also has some demos.
-
2
votes2
answers543
viewsA: Catch reCaptcha Value Google Ajax
Assuming the correct captcha value is in the "data-sitekey" attribute of the div ". g-recaptcha" Maybe this will solve: (important: I am using jquery, make sure you have included the jquery library)…
-
1
votes1
answer226
viewsA: Jquery does not validate Incorrect password
Apparently the login validation in the database is being done in the condition: "if(Count($user) > 0){" then if there is no login and password entered, it enters Else. So I think the program…
-
2
votes2
answers1497
viewsA: Delete file in php at specified frequency
complementing the response of Sanction, follow PHP code to list all files in the directory: //diretório que deseja listar os arquivos $path = "arquivos/"; //le os arquivos do diretorio $diretorio =…
phpanswered Fernando Rangel 131 -
1
votes2
answers918
viewsA: Receive form name or Submit PHP
I suggest using an Hidden field, this type of field is invisible to the user, IE, it will not appear on the screen. Example: In this case, you place the dynamic value in the "value" attribute of the…