Posts by Bruno Lazarine • 147 points
19 posts
-
0
votes1
answer119
viewsQ: Printar php results in Divs
<html> <head> <title> chk </title> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> function enviar() { var…
-
0
votes1
answer585
viewsQ: Error returning Stringstr
I have the following function in php it returns me a page string so that I can do if and Else with the returned information, but there is an error: Parse error: syntax error, Unexpected '=' in…
-
4
votes1
answer3221
viewsQ: Error Call to Undefined Function split()
Everything in my code appears to be correct however the error: "Call to Undefined Function split()" is presented to me on the screen when running my script so I saw the error is on line 31 how can I…
-
0
votes0
answers94
viewsQ: Curl error does not follow request
I am creating a field of donations from my website remotely interconnected with another but am having problems in redirecting, post dates to the page:…
-
1
votes1
answer108
viewsQ: Is it possible to request android applications via the web with php?
I’m working with php and initially I was curious about something, I’m needing to make a request (particularmete a login) in an android app more with my platform in php on the web, there is some…
-
0
votes1
answer26
viewsQ: Results of disordered requisitions
I have 1 textarea with several lines, to each line of this textarea I have data to make a post request in a single url, it checks each line and sends me the result on the screen via jquery, the…
-
-1
votes1
answer369
viewsQ: Control return order of Curl
I’m doing a check on proxys putting a list of proxys in the textarea and the code returns to me on screen 1 by 1 below each other whether they work or not. Almost everything is ready, the only…
-
1
votes1
answer221
viewsQ: preg_match regular expression to pick text between tag
What would be the expression of the preg_match to get the text "exit" within the following tag? <a href="/logout" role="menuitem"> <i class="icon-key"></i> Sair </a>…
preg-matchasked Bruno Lazarine 147 -
1
votes1
answer401
viewsQ: Curl does not request
I’m creating a script what makes login on a page and returns me the Htmlda page /logado, but it’s not working and from what I saw the code is correct Where I went wrong? <?php…
-
0
votes0
answers495
viewsQ: Curl does not return HTML
I am creating a custom management panel, but I’m having difficulties, because the HTML of my request after the login does not come to me on the screen, in place of it is displayed again the screen…
-
0
votes1
answer1550
viewsQ: Error 405 Method Not Allowed
I am trying to log in and return on the screen the panel of a site pore me and returned an error 405 Method Not Allowed how can I fix this ? <?php $email = ' '; $senha = ' '; $ch = curl_init();…
-
1
votes1
answer754
viewsQ: set_time_limit() error has been disabled for security reasons in
When executing my code the following error is returned Warning: set_time_limit() has been disabled for security reasons in /Storage/ssd3/854/1950854/public_html/envio1.php on line 78 the problem is…
phpasked Bruno Lazarine 147 -
1
votes2
answers529
viewsQ: Printar content in list format with jquery ajax
I have a jquery ajax code that returns data from a request, but it returns me a line and then erases and throws the next one on top of the Anteriror, I want it to print me on screen 1 result under…
-
2
votes2
answers526
viewsQ: How do I print jquery results in a div?
My codigo js is working perfectly however I wanted to printase the result inside a div in the index.html itself below my textarea and without redirecting to another page, because it is redirecting…
-
0
votes1
answer73
viewsQ: jquery ajax printa index on screen
I’m having problems with jquery because it rather print on the screen only echo of my php it is printing all index on the screen how to solve this ? <script…
-
0
votes1
answer94
viewsQ: IP validation without updating the page
I created a tool to help me test my proxy lists, it tests proxy and printa on the screen the result for min, but it is not printing only the result but also this printing the textarea what use to…
-
1
votes1
answer52
viewsQ: if on the screen before the query is performed
I am trying to create a consultant with PHP who makes a request in a form with an email from the client and returns me if he is registered in the service. The problem is that when I start my page…
-
0
votes1
answer363
viewsQ: Log in and see if page is online with Curl
I wish to log in to different pages with Curl and make sure everything’s okay. Example: login done successfully returns me a text the "login ok" screen if it didn’t work takes some element of the…
-
0
votes1
answer1249
viewsQ: Go to page and login with Curl
I’m trying to log in with Curl on web pages using the simplest code possible but it never works even though the code being apparently correct follows the code: $ch = curl_init(); curl_setopt($ch,…