0
votes
1answer
16 views
How do I run cURL request in the background in PHP?
I'm trying to build some kind of web based download manager using PHP and the cURL extension, I am stuck with one problem though, how can I download and save the file with cURL without having to make ...
0
votes
1answer
16 views
Curl with exclamation mark + hasthag in target URL
I'm trying todo a simple curl with a hashtag in target url - but getting errors.
I know this script works, i've used it many times before.
<?php
error_reporting(E_ALL);
$curl = ...
-1
votes
0answers
22 views
PHP Curl not echoing
I have the following code,
$ch = curl_init("http://example.com/keytest/retrievekey.php?key=55555");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_BINARYTRANSFER, true);
...
0
votes
1answer
23 views
check if remote webpage has been changed
My PHP script does the following
It logins to a remote server with login and password using CURL, which works Great. echo $result; shows the logged in page contents.
Secondly what it does is to ...
0
votes
1answer
11 views
Curl PHP parsing hash tags results in 400 bad request
I'm trying to crawl a url that has has tag in it but it returns 400 bad request error.
Is there a way to parse this correctly using CURL in PHP?
0
votes
1answer
25 views
How to make an HTTP request to a form in a web page in php
What I am trying to achieve is:
I have a web site to which I have full source code access. The pages in this web site has been created using velocity templates and I have a page with the following ...
1
vote
2answers
20 views
Docusign Tutorial - PHP API cURL Error - “Buffer cannot be null”
I am following docusign's tutorial to create an envelope using their PHP API. Tutorialis found here: http://www.docusign.com/developer-center/quick-start/request-signatures
I copied the code and ...
-1
votes
0answers
12 views
php curl if statement help it works fine as it is but i need to tweak it to look at a range of number instead of 1
okay so i have the following if statment and it works fine if 4.50 is found it echos cpu:4.50 else it echoes cpu:DEAD my problem is i need it to look at a range of numbers so say between 0.00 -- ...
0
votes
0answers
9 views
Php Curl Select Options in Dynamic Dropdown Form fields
I searched and searched how to create a php script to select (2) specific dynamic drop down fields when accessing a url, but when I run my code below, it shows the url, but the two drop downs are not ...
0
votes
1answer
16 views
Get destination URL of a link from edealinfo.co.uk in PHP
The URL that I'm working with is: http://www.edealinfo.co.uk/deals/redirect.php?id=k9OTxOWl25NiuN3KuZWIlFeagbK3aZo%3
I already tried:
$ch = ...
0
votes
0answers
18 views
How to catch request actions of a certain page with php as it is shown in dev tools?
I have successfully landed to a page using curl
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://****/****/****");
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, ...
-2
votes
0answers
25 views
Want retrieve data from a website which requires an ID [closed]
Okay , so forgive me , I'm a complete noob at this .
Here is what I want to do .
There is a a website , say xyz.com , it requires you to enter a unique ID , which it processes using php and returns ...
0
votes
1answer
31 views
using curl without command line, but with php for a post method
I need to do a http post/curl query from php and store the result in a jsor variable.
In my documentation, it says there are two ways:
An HTTP POST request with Content-Type "multipart/form-data" ...
0
votes
1answer
8 views
Posting File with PHP/CURL to ASP.NET MVC 2 Controller
sorry if this might be a cheesy question, but unfortunately I cannot change the project setup.
I have a form on a php page, which is supposed to post some text fields and a file input to a MVC ...
2
votes
0answers
23 views
Using cURL to do a stream (line by line) FILE UPLOAD via POST with MULTIPART/FORM-DATA
I want to upload a file to a PHP form on a remote server with a certain URL. The upload form is a file upload form (Multipart/form-data), and my script should take a local file, and send it to that ...