Search results

  1. A

    Samsung Galaxy Portal (i5700) Android Upgrades?

    Will / is the Samsung Galaxy Portal's Android operating system upgradeable to Android 1.6 or 2.0? Thanks
  2. A

    Midi In To Midi Out Adaptor?

    Is there a cable / connector / adaptor available to turn a midi in socket into a midi out socket?
  3. A

    [PHP] Insert A String Before or After A Line In A File?

    Basically I want to insert a string (like "Hello World") before of after a line or string (lets say before "My Name is Alster" on line 22). How could I do this (sample code, tutorials... would be great).
  4. A

    [PHP] Insert A String Before or After A Line In A File?

    Basically I want to insert a string (like "Hello World") before of after a line or string (lets say before "My Name is Alster" on line 22). How could I do this (sample code, tutorials... would be great).
  5. A

    PHP - check multiple files with file_exists?

    Basically I need to check if multiple files exist. I've tried: if (file_exists("blarg.php" && "nom.php")) if (file_exists("blarg.php" || "nom.php")) if (file_exists("blarg.php", "nom.php")) but they don't seem to work. Any help?
  6. A

    PHP - Auto Submit Form?

    How could I fill a text box with say "84578" then submit it - all without the webpage viewer lifting a finger? Thanks. Thanks ben_100_uk. I never thought of that. But how could I auto submit the form?
  7. A

    PHP - Setting cookies for multiple sub domains?

    $_POST['username'] = stripslashes($_POST['username']); $hour = time() + 3600; setcookie(uusername, $_POST['username'], $hour, "/", ".streeteye.info", 1); setcookie(upassword, $_POST['pass'], $hour, "/", ".streeteye.info", 1); Basically when you login from "subdomain1.streeteye.info" it sets...
  8. A

    PHP - How can I make this work?

    I've been trying to make this work for about a day. Basically it's supposed to check if the file exists in the directory uploads/<username>/ but it doesn't work... Can someone please fix this? if (file_exists("uploads/".$_POST['username... . $slash . $_FILES["file"]["name"]))
  9. A

    What's wrong with this PHP?

    mkdir("/uploads/".$_POST['username'].) or die ("Failed"); I keep getting; Parse error: syntax error, unexpected ')' I always forget how to include variables into file paths... Warning: mkdir() [function.mkdir]: No such file or directory in <File Location> This is what I get after removing the...
Back
Top