Welcome to Discuss Everything Forums...

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed.


 

Search:

Type: Posts; User: YaSSeR

Search: Search took 0.05 seconds.

  1. do i still have to pre-order black ops 2 hardened edition to get nuke town 2025 zombies?

    basically i want to get black ops 2 the hardened edition but i don't want to pre-order it , i just wanna get it the day it comes out from the store will it still come with nuketown 2025 the...
  2. How to download a remote file using PHP without loading it to the memory?

    I meant when I do this: fwrite(fopen('filename','w'),file_get_contents('remote_file'));
    the file get loaded into memory then written into the hard disk
    but I solved the problem by using...
  3. HTTP file upload using PHP without libcurl?

    I'm trying to upload a local file to a website of mine, I have a php script waiting to recieve the file,
    I've been only able to do this using libcurl, particularly this function:
    function...
  4. HTTP file upload using PHP without libcurl?

    I'm trying to upload a local file to a website of mine, I have a php script waiting to recieve the file,
    I've been only able to do this using libcurl, particularly this function:
    function...
  5. Replies
    0
    Views
    88

    Samsung CorbyPro or Samsung Monte ?

    i like music and gaming
  6. A php script to take a picture of a website?

    I need a php script that takes a picture of a website as it appears in the browser
    I know it sounds impossible, but I was wondering if maybe it can be done, maybe in theory?
  7. A php script to take a picture of a website?

    I need a php script that takes a picture of a website as it appears in the browser
    I know it sounds impossible, but I was wondering if maybe it can be done, maybe in theory?
  8. A php script to take a picture of a website?

    I need a php script that takes a picture of a website as it appears in the browser
    I know it sounds impossible, but I was wondering if maybe it can be done, maybe in theory?
  9. A php script to take a picture of a website?

    I need a php script that takes a picture of a website as it appears in the browser
    I know it sounds impossible, but I was wondering if maybe it can be done, maybe in theory?
  10. how can I create a Japanese-Name windows folder with PHP?

    ok, what I'm trying to do is open a website using php
    then get a certain japanese text from it and use it as a folder name under windows OS
    how can i get php to support japanese to do this
  11. How can I set PHP curl to get response header without returning the whole transfer?

    Ive tried this
    <?PHP
    $ch = curl_init();
    curl_setopt($ch,CURLOPT_URL,$url);
    curl_setopt($ch,CURLOPT_HEADER,1);
    curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
    $data = curl_exec($ch);
    ?>

    Im using...
  12. How can I set PHP curl to get response header without returning the whole transfer?

    Ive tried this
    <?PHP
    $ch = curl_init();
    curl_setopt($ch,CURLOPT_URL,$url);
    curl_setopt($ch,CURLOPT_HEADER,1);
    curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
    $data = curl_exec($ch);
    ?>

    Im using...
  13. is there a way to get a PHP script to wait for a website's redirection for a certain...

    ...amount of time? right now im using PHP CURL_FOLLOWLOCATION to follow the location of a website's redirection
    but the problem is PHP consider the script as executed as soon
    as there's no...
  14. Creating a file with unicode characters in its name in PHP?

    lets say i have a file "name.txt"
    which contains Japanese characters
    i want to take the text inside this text file and use it as a name to another file
    script:
    <?PHP
    $fn =...
  15. Is there a way to get "CURLOPT_COOKIEJAR" to write cookies to a variable in PHP ?

    im writing a php script that deals with a lot of cookies and i don't want them to be saved in individual files, instead i want to use CURLOPT_COOKIEJAR to store them in a variable.
    is it possible...
  16. How can i define variables in PHP that work inside of functions?

    I mean without having to pass that variable to each function.
  17. How to filter out characters that are not allowed as part of the file name in Windows...

    ...using PHP ? i need a script that does that.
  18. How can i download a file by opening multiple connections to the server using PHP?

    im writing a script to download a file using php and curl. but downloading is just too slow, i want to open multiple connections to the server and download the file (hence accelerate the download)....
  19. how can i use php mail() function form windows OS?

    im using Windows to locally execute a PHP script that requires mail function. what should i do?
  20. PHP based video file length checker script?

    I need a php script that can check the length of a video file.
    i know its kinda complicated.
    what makes it more complicated is that i want the script to check video files from any format.
    please...
  21. Replies
    0
    Views
    76

    how can i index a website using php?

    also i'd like to know how to get the input variables of a php script on a certain site.
  22. how can i open a webpage and get cookies' vaules using php?

    i mean how can i get the default cookies that the site would usually assign them to your browser as a php variable in php ??
  23. Replies
    2
    Views
    63

    what's wrong with this php line ?

    php keeps giving me a parse error on this line
    if (isset($star) && $star%10=0){
    why??
Results 1 to 23 of 23