Search results

  1. marshian

    Upload progress monitor

    There's a thread about exacly the same: http://forums.x10hosting.com/programming-help/66188-how-get-number-uploaded-bytes-php.html
  2. marshian

    Dynamic images with PHP

    I might do that, and while I'm doing that, I could also talk about making different layers, setting filters, etc... but this isn't ment to be a tutorial on all possible ways to manipulate an image with php, it's only an introduction to it, so it must remain simple. And destroying the image...
  3. marshian

    Note to all mods etc on this forum

    This is a note for all moderators, admins etc who come on this forum. You're always asking us to close our threads if our problem is solved, there even is a sticky to remind us of it, and I beleive most of us know we should close our threads, but please read the sticky! At this moment, the...
  4. marshian

    I need a million of help

    You'll have to learn how to make sites :p This is for HTML: http://www.w3schools.com/Html/default.asp And you should learn CSS too: http://www.w3schools.com/Css/default.asp If you were looking for click-a-couple-of-times-and-have-a-site, you're at the wrong place...
  5. marshian

    Porn site without content

    Auch, that guy is owned hard... There's a lesson we all must learn from this: don't mess with x10!
  6. marshian

    Need some testers for java.

    Stop works for me, running Java SE 1.6.0_05 But as gsonline says, it needs more features... You've got quite a large frame for just 3 buttons... Maybe you could add a volume switch and stuff like that?
  7. marshian

    How to get number of uploaded bytes in php

    He's not asking about information about the posted file, he wants some sort of thread-like system that tracks how many bytes have already been uploaded... But why would you want it? I don't think it's possible to do something like that in php, but perhaps we can find a way around the problem?
  8. marshian

    Dynamic images with PHP

    Yeah, I forgot to put the link to the PHP's image functions... Thanks for telling me, I'll add it ^^
  9. marshian

    Dynamic images with PHP

    Introduction to dynamic images using PHP. Based on the creation of this example: Required knowledge: - PHP at more then average level - An image manipulation program (eg. GIMP or PSP X2) - The ability to be able to use this program Index: == Introcuction == == Makeing it == == Tips & Tricks...
  10. marshian

    Else case?

    I think this is the code you need: switch($var) { case "value1": //do stuff break; case "value2": //do other stuff break; default: require("404.php"); }
  11. marshian

    Some known tricks

    Indeed, it works perfectly with 7-Zip file manager. As usual, it takes GNU to solve the problems Microsoft can't handle... 7-Zip website: http://www.7-zip.org/ You don't have to download it just for this, download it for the great and fast compressing and decompressing too ^^
  12. marshian

    Required information regarding domain and naming servers

    Taken from wikipedia: "Every domain name must have a primary nameserver (eg. ns1.domainname.com), and at least one secondary nameserver (ns2.domainname.com etc). This requirement aims to make the domain still reachable even if one nameserver becomes inaccessible.[1]" Which means, you could...
  13. marshian

    email submit button

    That's strange, I don't have any problems when I run that code :s
  14. marshian

    Accessing all from elements :Javascript

    I think it's wrong to change the type of an element at runtime... but the good news is it's not even required! I'm getting the required result in both firefox and ie with this code: function srchvalidate(theform) { var elements = form.childNodes; for(i = 0; i<elements.length; i++) {...
  15. marshian

    email submit button

    Of course, I think this is the right code: <?php $name = strip_tags($_POST["Name"]); $email = strip_tags($_POST["e-mail"]); $favourite = strip_tags($_POST["favourite"]); $comments = strip_tags($_POST["comments"]); $message = "<html><body>"; $message .= "<i>$name</i> has...
Top