• Welcome to TechPowerUp Forums, Guest! Please check out our forum guidelines for info related to our community.

Recent content by DeathByTray

  1. D

    5970 a fast card ONLY in benchmarks?

    Out of curiosity, what didn't you like about it?
  2. D

    ASUS GeForce GTX 590 3 GB

    It's called pun. Best bang for buck Didn't think I'd have to explain that one.
  3. D

    ASUS GeForce GTX 590 3 GB

    Well guys, you can mock the card all you want but fact is, the GTX 590 gives the best bang for the buck.
  4. D

    PHP -> SQL Injection & more

    Your code is used for SQL queries. What I'm trying to do is change the url of the table header. <a href="www.localhost/test<?echo $header_url_A;?>">A</a> <a href="www.localhost/test<?echo $header_url_B;?>">B</a> <a href="www.localhost/test<?echo $header_url_C;?>">C</a> Or did I miss something?
  5. D

    PHP -> SQL Injection & more

    1) Am I right assuming this code below will prevent SQL injections? if (isset($_GET['col']) && isset($_GET['sort'])) { $orderby = $_GET['col']; $sortby = $_GET['sort']; if (!get_magic_quotes_gpc()) { addslashes($orderby); addslashes($sortby); } } 2) My imaginary...
  6. D

    Apple Updates MacBook Pro Line with Faster Processors, Next-Gen Graphics

    Nice, so the OpenCL equivalent will work on consumer cards too. But those people aren't into Premiere/AE or they'd do something horribly wrong. :D
  7. D

    Apple Updates MacBook Pro Line with Faster Processors, Next-Gen Graphics

    CS5 works on ATI as well as Nvidia. The only difference is the Mercury Engine which uses the GPU (CUDA). This feature is only found in Premiere. Additionally, it might only work with workstation cards and I've yet to see the image quality of such a GPU-rendered video. So, I've a hard time...
  8. D

    Apple Updates MacBook Pro Line with Faster Processors, Next-Gen Graphics

    2 cores and a last gen GPU? I guess that's awesome by Apple standards. :p
  9. D

    php help

    Good to know. Replaced, tested and approved. Thanks ;)
  10. D

    HIS HD 5870 iCooler V Turbo

    Do you keep every Evergreen you test or do you send some back? If the former is true, haven't you run out of space yet? ;p Nice review
  11. D

    php help

    Oh well, this works: foreach ($price as $k => $v) { $DataSet->AddPoint($v,"Serie1"); } foreach ($date as $k => $v) { $v = mktime(0,0,0,$days[1],($days[2]),$days[0]); $DataSet->AddPoint($v,"Serie2"); } Don't know why the other didn't though, whatever. :p
  12. D

    php help

    Nope, I went further ahead, put them into variables and added the commas. Hmkay, sounds very Greek to me :D
  13. D

    php help

    They're not arrays though. $price and $date are both variables. Btw. what does the '->' do, where can I read up on that? My google skills failed.
  14. D

    php help

    If I understood you correctly that's what I did above. Well, more or less. I run into yet another issue though :ohwell: $DataSet = new pData; $DataSet->AddPoint(array($price),"Serie1"); $DataSet->AddPoint(array($date),"Serie2"); This is some code of pChart and all I'm doing is...
  15. D

    [fps]Tactical Assault (coders wanted !)

    You may want to post this at www.unrealadmin.org
Top