Search results

  1. VPmase

    Can't get into FTP.

    Stoli isn't allowing me to connect via FTP either... I've opened up a support ticket too...
  2. VPmase

    Query String - $_GET problem

    Using <?=$exhibition_id?> is the same as doing <?php echo '$exhibition_id'; ?> Just a FYI
  3. VPmase

    Edit a file with a form

    One way you can do it is by using multiple files and only loading the editable file. That would probably be the easiest and fastest way.
  4. VPmase

    ajax problem

    Definitely change the button in your form. <input type="submit" onclick='ajaxFunction()' /> is dysfunctional. <input type="button" onclick="ajaxFunction()" /> is better.
  5. VPmase

    CSS Wrapper

    Divs are better than talbes. Tables take longer to load than divs but divs are harder to organize lol.
  6. VPmase

    Special Raffle (Domains and more) | Sorteo especial (Dominios y más)

    700 credits on its way :) Where do we post answers for the extra 5?
  7. VPmase

    What app do you want?

    Well tell us what you've already coded so we don't ask for something already done. I'll start ya off with something easy: Paint :)
  8. VPmase

    Weird White Space

    Try adding valign="top" to the <td> tags.
  9. VPmase

    explain please

    3c: It gets the modulus of the $prim number for any number > than $prim and if it equals 0 then $prim not prime. garrettroyce explained it well in his comments.
  10. VPmase

    Actionscript: avoid loading the same file twice

    If I'm right, the loadMovieClip returns a true or false value. So just make a var on the layer (we'll call it loadedmc:Boolean = new Boolean; loadedmc = false; //make it and set it to false) and add this to the code onClick { if(!_root.loadedmc){ _root.loadedmc = loadMovieClip('clipURL'...
  11. VPmase

    PHP Problem

    It could be in your db_edit.php or db_preview or another include.
  12. VPmase

    ASP support

    2) It should be http://markrlv.x10hosting.com/nextpage.aspx Don't include the "home/myusername/www" or "home/myusername/public_html" 1) x10 does have aspx support.
  13. VPmase

    My website cannot be shown

    There is a way to change this by adding a code to the .htaccess file if you want to keep your filenames the same. http://www.javascriptkit.com/howto/htaccess6.shtml xD
  14. VPmase

    try to attach <?php tags, plese help.

    Are you talking about includes? http://us3.php.net/manual/en/function.include.php
  15. VPmase

    Understanding PHP, HTML, ASP

    Its always a good thing to know a lot of languages :) I suggest you learn it if you can and want to.
  16. VPmase

    New Sig

    Figured this had nothing to do with web graphics or web design so I'ma post it here. CnC my latest sig :)
  17. VPmase

    Html Js page loader

    If your site loads slowly no one is going to want to view it. A progress bar is unnecessary and can cause more lag for a viewer.
  18. VPmase

    Stylish Pre-loaders

    If you can't post something productive or helpful, don't post. Its as simple as that. What about this? Of course you're going to have to animate it for it to be used correctly.
  19. VPmase

    Movable Type

    Some scripts require Level Two (Intermediate) PHP that x10 provides. If you don't have that you can request it from your account panel (http://x10hosting.com/account)
  20. VPmase

    Html Js page loader

    I don't think there is a way to get the percentage loaded of a webpage in that same webpage.
Top