Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7979699
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T09:50:41+00:00 2026-06-04T09:50:41+00:00

When my PHP script runs, I would like to run a link like this

  • 0

When my PHP script runs, I would like to run a link like this server side:

http://77.33.xx.xx/s/addtoqueue.php?action=store&filename=myprettypicture&link=http://i69.servimg.com/u/f69/13/29/70/44/facebo10.png

Im doing this for storing the images on a own separate images server. The link is adding the image to a queue.

How can I execute this link correct?

I did this so far:

$link = 'http://77.33.xx.xx/s/addtoqueue.php?action=store&filename='.$filename.'&link=$link;

But dont know how to run this?

And would it by the way be smart to urlencode() and urldecode() the $link?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T09:50:43+00:00Added an answer on June 4, 2026 at 9:50 am

    I wouldn’t build the query string myself like that, but use http_build_query() in preference:

    $url = 'http://77.33.xx.xx/s/addtoqueue.php';
    $params = array(
        'action' => 'store',
        'filename' => $filename,
        'link' => $link,
    );
    $link = $url . '?' . http_build_query($params);
    

    To actually make a call to the URL you can use a number of techniques, but my favourite in this case would be curl. Here is an adapted version of the example from the manual:

    <?php
    $ch = curl_init($link);
    curl_setopt($ch, CURLOPT_HEADER, 0);
    curl_exec($ch);
    curl_close($ch);
    

    Other options include file_get_contents($link); if the fopen wrappers have been enabled.

    Additional response for comments

    <?php
    $ch = curl_init($link);
    curl_setopt($ch, CURLOPT_HEADER, 0);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    $response = curl_exec($ch);
    curl_close($ch);
    

    $response now contains the response from the URL. From the curl_exec() manual page:

    Returns TRUE on success or FALSE on failure. However, if the
    CURLOPT_RETURNTRANSFER option is set, it will return the result on
    success, FALSE on failure.

    For more information on the curl options you can use checkout the curl_setopt() manual page.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like run a PHP script that runs every second to update a
I have a php script that is run once a minute. The script runs
I'm working on a PHP script that runs a Python script on the server.
I have a simple feedback form PHP script that I would like to enhance
I have a PHP script that runs as a CGI program and the HTTP
I would like to call a cron job from within a PHP script. I
I'd like to create a php script that runs as a daily cron. What
Id like to run a cron job once a week which runs a php
Hi guys I have a weird question, I have a cli php script runs
I have a php script that runs a mysql query, then loops the result,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.