Recent content by brutetal

  1. B

    Unable to login to my Cpanel account

    Hello, I'm unable to login to my Cpanel account on Boru. I believe it is not setup correctly or some unforeseen error with my account.
  2. B

    Teaching myself PHP -> Question on variables

    Jotform.com uses cookies to store data. The ISP records what ip you have at the time and what you change to unless you change providers of course. A history wipe will only wipe cookies if the option is selected to or they simply expire. Sessions are based on server/website settings when they...
  3. B

    Java, inheritance

    Oh its my professor who wants us to do that as part of her guidelines for each project. Adding the data type's whole name to the end of the variable name. I would lose points on the overall project or not get graded at all until I fix it what I don't follow according to her guidelines...
  4. B

    Java, inheritance

    For my java class, we're doing a project based on inheritance. I can get my code to update the balanceFloat and display it. But it won't output the string objects. @.@ This is just a modified version of the full code. Design class: JTextArea transactionsTextArea = new JTextArea(10,10)...
  5. B

    PHP Switch Functions.

    $action = $_GET['action']//Gets the url request echo $ction; //Output value example url: index.php?action=printme This should help you. To prevent sql injections: $action = $_GET['action']//Gets the url request $strip_action = mysql_real_escape_string($action); //If your using it for querying...
  6. B

    PHP Include- Page Titles

    <?php $title="$title"; switch( $title) { case($page = 'home.htm') $title = 'Title1'; break; case($page = 'page1.htm') $title = 'Title2'; break; } ?> You can't do that, its invalid syntax. This is correct usage: switch($page){ case "home.html": $title = "Home"; break; } If you want to...
  7. B

    Downloadable Graphic Cards?

    The only feasible way I see is by using one or more CPU cores in a Dual or Quad core CPU to act as a gpu... but you will already need an on-board video.
  8. B

    Best GPU upgrade

    Yeah, Nvidia released them and there's a 150$ - 100$ price drop on them after the first week of release. ATI 4800 series has about the same performance for a cheaper price but once overclocked it should give the same performance or more. They have a small problem with temperature, when they...
  9. B

    Graphics cards! 9600, 8800, 6600 oh my!

    Nope, the card takes about 200 watts alone. GTS is the updated and tweaked version, of the GT. There's minor to no difference at all but the price tag.
  10. B

    Problems with Windows Vista...

    I have the same problem, but I fix it by just restarting the comp. Cause I leave my comp on for weeks and it usually starts to show up after 8 days.
  11. B

    PC Building help...Again (no really, maybe I'll actually build it this time)

    If you do go AMD quad core, I suggest the 9050's series, they have the error fixed.
Top