Search results

  1. vol7ron

    MYSQL help

    you bumped a thread after being moved 3 mins earlier? haha it's going to be 'localhost' or possibly 'localhost:5432' don't forget that your db and username have your x10name in front of it: xcaliberse_dbname xcaliberse_username mySQLpw
  2. vol7ron

    how to place files in other than www folder

    If you don't know what you're doing, you should consult with an admin before trying to do something outside of public_html You could open a known security hole, especially if you redirect improperly.
  3. vol7ron

    PHP script - adding target="_blank" to links

    It is wrong to suggest using target="". W3 has deprecated this tag and it does not conform to strict w3 standards. One solutions is to: <a href="http://forums.x10hosting.com/programming-help/yourpage.html" onclick="window.open('yourpage.html');return false;"> Another alternative that I like...
  4. vol7ron

    php classes?????????

    again, we've already discussed what a class is, which I think he has a better understanding. the isssue is what does he want to do? he gave a little explanation, but with a little more example data, we can return a better example of how to accomplish it w/o the user of classes/structs, just...
  5. vol7ron

    Graphic Signature?

    still think its too vertical, make the D's more diagonal from eachother. like the touchup work done by neo. I too did not understand what you meant by signature, I guess you were talking about artist signature. usually, though, they just leave initials, a date, and sometimes the number the...
  6. vol7ron

    Perl Tk::Photo help

    Well I don't know how simpler you can get than what you've already posted/said. Photos The perl/Tk Photo() function achieves an effect similar to the Bitmap() function. Namely, it returns a file descriptor to be used in a later -image configuration option to a widget. As an example consider...
  7. vol7ron

    Website down

    opened one and it's been moved to administration. definitely something with the nameservers as i'm able to connect to CPanel using the IP address and port. not sure what happened last night. Edit: took some nagging and a little bit of time, but now i'm back in business!!! thanks guys!
  8. vol7ron

    &apos; Error

    My feeling was either the browser, editor, or charset/filetype. I think he should try in FF as I've experienced a problem like what he's having before.
  9. vol7ron

    Thanks Microsoft

    great. now MS is going to take away their free software and instead offer free support, great job Macaws, see what you caused?
  10. vol7ron

    Binary/Assembly?

    Is anyone proficient in any of these languages that they can help modulate the DVD reader.
  11. vol7ron

    Graphic Signature?

    I think it's too vertically oriented. It's kinda fashionable print, but the D's are too spaced out. If you're not going to for NY Fashion-like print, then it need to have more color/substance
  12. vol7ron

    Perl Tk::Photo help

    are you sure you went through all the pages of the third link? make sure you click the "next" button until the tutorial begins. http://www.geocities.com/binnyva/code/perl/perl_tk_tutorial/
  13. vol7ron

    retrieving the file upload name

    well apply the subscript i showed you to your code to see if any of that outputs. i was trying to show you how to retrieve it and if it worked all in one step.
  14. vol7ron

    php classes?????????

    Yes and classes are understandable in conditions where inheritance and morphism is key, but I don't think it is needed here. Classes are good for object oriented node lists such as the DOM hierarchy, but all he needs is SQL to retrieve the data and relationships and Javascript/PHP/Perl (any...
  15. vol7ron

    Review www.mmoworld.co.cc

    That's all good and you're right, I didn't notice that. I should have looked to see if he was just new and posting for ad space or if he was a reg. In that regards, I'm sorry. But still, it's okay to have other people's graphics reviewed and all, so long as there is something there of yours...
  16. vol7ron

    Review www.mmoworld.co.cc

    Even so, when you advertise your site hosted elsewhere to a forum of a different hosting site, what do you expect? It just seems like you're trying to get free advertising because I'm not seeing much to review. The forum software was developed by phpBB, with a skin designed by Daniel from...
  17. vol7ron

    php classes?????????

    Whether it's rows in a drop down or many dropdowns themselves, it doesn't matter. Give a better example of your tables and it'd be easier to show how to do this. I can't show you right now, because I'm trying to find something out for work as well, but I can when I get home.
  18. vol7ron

    Website down

    Cannot access my site on Lotus. With AMP problems, don't know if this was planned or not.
  19. vol7ron

    php classes?????????

    I don't think you need classes to accomplish this. Classes are more conceptual then necessary for what you're doing, if I understand correctly. You are trying to dynamically select characteristics based on the composition of a vehicle. If I understand what you're saying, you're wanting to...
  20. vol7ron

    php classes?????????

    The correct term is OOP - object oriented programming. Your syntax is already wrong - Class Confused(){...} should not have any parentheses, it should be Class Confused {...}. A class is simply a user-defined data type. Instead of saying a variable is a number or a string, you can define...
Top