Jump to content

pagedrop

New Members
  • Posts

    9
  • Joined

  • Last visited

    Never

Everything posted by pagedrop

  1. Hello, I have a java program which searches airline prices for a selected date. and outputs the results in a table grid format. Now, i want to read the date, and the price from the table grid and show the price under the date in a calendar form, and want to use php for this. please let me know if this can be done. thank you
  2. hello, check this link: http://www.4wordsystems.com/php_image_resize.php
  3. thank you for your help
  4. Hello, I have this below code, where a user enters a url and the file specified in the url is retrieved and saved on the server. Now i want to display just the filename and its extension at the end. please let me know how to do it. for example, i enter a url like http://www.google.com/google/test.html, after retrieving the file, i want to show just test.html thanks <?php echo "script started\n"; echo "<br>"; echo $_GET['url']; echo "<br>"; $inputfile = fopen($_GET['url'], "r"); $outputfile = fopen("file.pdf", "w"); echo "opened files\n"; echo "<br>"; $data = ''; while (!feof($inputfile)) { $data .= fread($inputfile, 8192); } echo "read data\n"; echo "<br>"; fwrite($outputfile, $data); echo "transfered data\n"; echo "<br>"; fclose ($inputfile); fclose ($outputfile); echo "files closed\n"; echo "<br>"; echo "done"; echo "<br>"; ?>
  5. Thank you both, i will learn about the techniques then. thanks once again.
  6. Hello, thank you, But i'm not sure what is injection? could you please tell me about it and the code ?
  7. I have built a web storage with ajax and php, mysql. please test the website and let me know the good and bad. thank you http://www.storagedrop.com
  8. Hello, thank you for the reply. I have tried and the post and get methods, but was unable to retrieve a file from a input text field using the above php code. May be i was coding not correct, can you please modify the above code? thank you
  9. Hello, I have this code below to grab a given file name into the server. I would to know and learn how to put a input box for this code, so the user can place any file url and the same file will be copied. thank you <?php echo "script started\n"; echo "<br>"; $inputfile = fopen("http://www.google.com/homepage.css", "r"); $outputfile = fopen("homepage.css", "w"); echo "opened files\n"; echo "<br>"; $data = ''; while (!feof($inputfile)) { $data .= fread($inputfile, 8192); } echo "read data\n"; echo "<br>"; fwrite($outputfile, $data); echo "transfered data\n"; echo "<br>"; fclose ($inputfile); fclose ($outputfile); echo "files closed\n"; echo "<br>"; echo "done"; echo "<br>"; ?>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.