Search results

  1. xPlozion

    Please help me on mysql_connect

    Glad to hear your problem is fixed :). Your problem is the reason I, as well as many others code everything in lowercase. I'm torn between using underscores or not though (leaning towards _'s). Is this code server-side or client side? x10's servers have firewalls that only allow the mySQL...
  2. xPlozion

    Best Practices

    Welcome to x10. When you say you are new to this field, do you mean web designing, programming, or something completely different? Again, WELCOME! :)
  3. xPlozion

    Directories Help

    Thanks to someone on PHP.net's opendir() function page, I found this <?php //define the path as relative $path = "path to directory"; $webpath ="the url you want to place before your filename/"; //using the opendir function $dir_handle = @opendir($path) or die("Unable to open $path"); echo...
  4. xPlozion

    Need Help a Warning

    And make sure to check that you don't have any spaces on the first line where the PHP tag is, as that will cause the error iirc ;) But try replacing <? with <?php . There's several reasons to do so: <? is also short-hand for XML, <? is being removed or disabled in future PHP versions 6.* iirc...
  5. xPlozion

    Need Help a Warning

    Short tags could be the problem, but only if the server doesn't support them. But then again, if they weren't enabled, then the PHP wouldn't execute. Is there any real purpose for the Cache-Control? You mentioned something about a header.php file. Seeing as how English isn't your native...
  6. xPlozion

    Hide file path

    We appreciate the effort, but I believe that this is in the wrong section. It would have most likely gone under Scripts & 3rd Party :) I'm sure that this will be useful, especially if it's for an artist/band that offer mp3's to dl :).
  7. xPlozion

    Need Help a Warning

    What's on and around line 2? Chances are that you are either trying to set a cookie or use header(); _after_ text has already been sent to the browser (thus headers already sent). It could be as simple as just relocating the problem to the top of the script or using ob to capture any text that...
  8. xPlozion

    [400 Credits] Valentine Special Sign Up DEAL! ONLY FOR TODAY!

    signed up as xPlozion ;)
  9. xPlozion

    Passing a value from a select input field using php

    ok, here's the syntax for a select field ;) <form action="./" method="post"> <select name="gender"> <option value="m">Male</option> <option value="f">Female</option> </select><br /> <input name="submit" type="submit" value="Check" /> </form> <?php if (isset($_POST['submit']) &&...
  10. xPlozion

    ok, hi :)

    ok, hi :)
  11. xPlozion

    PHP function scanner

    is this part of your programming class :P. looks useful, but i have no use yet...
  12. xPlozion

    i want to make user registration

    i've gotta agree with some to say that a user registration is pretty simple. you don't need js, just make sure you check the forms in php ;) i built mine early on in my php learning process, and it was actually easy. encrypting data is a one line piece of code sha1($pass.$salt); ($salt to...
  13. xPlozion

    Favorite Color

    Subaru wrx blue Stupid itouch typed sex instead of wrx
  14. xPlozion

    datashelf

    Wow my school has this blocked...
  15. xPlozion

    My hosting account terminated

    do not attempt to hijack threads and open a ticket in the support center :)
  16. xPlozion

    My hosting account terminated

    try opening a ticket in the support page if you cannot unsuspend yourself, or are having other difficulties. This forum is more for p2p (person-2-person) help and is not the official (prefered way) of support. Like now, I (regular user) am helping you (another user with a problem). No staff...
  17. xPlozion

    [100] Looking for a name for a network

    http://www.gb-network.com/ ?
  18. xPlozion

    datashelf

    now it works. i was using firefox 3 on xp... gonna use this tonight if i can't bypass the school's filter :P
  19. xPlozion

    Slice my template

    i'll try to work on it... i'll post a message when i've got it in html form with css :) couple things you'll need to work on though when your done is that a: galery is spelled gallery, and you need to do the active links ;) i will post the slice layout when i'm done in a few minutes to see...
  20. xPlozion

    x10Newsletter - What do you want?

    more contests for the same reason as a few above (greedy). i would also like to see what the users think is the best site of the fortnight (whatever that is, and i'm NOT gonna google it)...
Top