Recent content by Obsidian Age

  1. O

    Pull Values From PHP Array?

    Hi there, I have created an array that correctly displays the values I require, yet I cannot work out how to extract them. (I changed $url in case data integrity is an issue) $url PRODUCES = text 15.50% text 53 text 342 text 608 text 205 text 3095; $string = file_get_contents($url); $regex =...
  2. O

    PHP - See More Information When Clicked?

    Hi there, I currently have a PHP page that is starting to stack up a lot of information, so I have divided it into sections all under headers. What I want to happen is that when a header is clicked, the relevant code is shown. When another header is clicked, I would also like to do some sort...
  3. O

    Python Variable To PHP?

    Hi there, I've just finished a rather complicated script in Python that prompts the user for a whole bunch of information and runs some calculations based on what they enter. The problem is, I just realised that to be embedded into a website, it needs to be in PHP. I really don't want to have...
  4. O

    Retrieving Visitor City And Country In PHP?

    Heya there, I currently have a PHP image that displays information about a visitor to my website. It used to grab City and Country information from ipinfodb.com but it no longer seems to do that. I was wondering if anyone can tell me why. Here's the relevant section of the code: $url =...
  5. O

    Can You Load An Image In PHP Imagestring?

    Heya, just wondering if it is somehow possible to load an image into an imagestring. It's for an API that returns basic details about players in Halo: Reach. The code is: <?php $image = imagecreatefrompng("black.png"); $text_color = imagecolorallocate($image, 255, 255, 255); $apiKey =...
  6. O

    Drop Down Menu To Change PHP Variable?

    Hi there, I've got a drop down menu that successfully updates a PHP variable when a submit button is clicked. However, I can find absoutely no working way whatsoever to get the submission to occur on selection of the variable from the drop down menu. I've tried things like...
  7. O

    Drop Down Menu To Change PHP Variable?

    Hi there, I've got a drop down menu that successfully updates a PHP variable when a submit button is clicked. However, I can find absoutely no working way whatsoever to get the submission to occur on selection of the variable from the drop down menu. I've tried things like...
  8. O

    Drop Down Menu To Change PHP Variable?

    Hi there, I've got a drop down menu that successfully updates a PHP variable when a submit button is clicked. However, I can find absoutely no working way whatsoever to get the submission to occur on selection of the variable from the drop down menu. I've tried things like...
Back
Top