Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Naits
  • Order by date
  1. Naits

    Inline assembly with Dev-C++?

    Thanks andylec! I'l try that out when I get home..
  2. Naits

    Inline assembly with Dev-C++?

    Could anyone please tell me how I can do inline assembly with Dev-C++?
  3. Naits

    compiler for nt based os

    No emulator? Try Bochs a free IA-32(x86) PC emulator: http://bochs.sourceforge.net/
  4. Naits

    x86 Hardware registers?

    Where can I find a list over all the x86 hardware registers? Like: 0xb800 is the the address of the video memory. but I need to know the others too... Thanks!
  5. Naits

    DirectX and C++?

    Can you make DirectX programs/games with just c++ or do you need Visual C++? and where can I find some tutorials?
  6. Naits

    Downloadable icons?

    Does anyone know where I can download a good icon collection to use in my programs? Thanks!
  7. Naits

    Having trouble updating MySQL databse

    Thanks!
  8. Naits

    Having trouble updating MySQL databse

    I have this: # # Table structure for table 'browser' # CREATE TABLE browser ( id int(11) DEFAULT '0' NOT NULL, type varchar(150) NOT NULL, count int(11) DEFAULT '0' NOT NULL ); Im trying to update it with this query: $sql = "UPDATE browser SET count = count + 1 WHERE type =...
  9. Naits

    call PHP function with OnClick

    Is there a way to call a PHP function with OnClick?
  10. Naits

    Why dosen't this session work?

    I was trying to use $_SESSION at once but I figured out that my PHP dosen't support it even tought my PHP version is 4.1.2 ......
  11. Naits

    Why dosen't this session work?

    I got it working now. This is how I did it: Just change: $TesT = "100% working - JiPPii!!"; to: $GLOBALS['TesT'] = "100% working - JiPPii!!";
  12. Naits

    Time limit sessions in PHP4?

    Is there a way to time limit the session's in PHP4?
  13. Naits

    Why dosen't this session work?

    OK I'l check that out. Thanks!
  14. Naits

    Why dosen't this session work?

    Thanks! But what is a superglobal variable? could you please give me an example?
  15. Naits

    Why dosen't this session work?

    This is the only content of the session file: !TesT| Nothing more. What's wrong with my script? __________________ Visit my homepage .: Game universE :. http://gameuniverse.eg.st
  16. Naits

    Why dosen't this session work?

    I know my PHP (v4.1.2) is supporting the session_register function because I made a script that just had the session lines from both files and that script worked, but it seem's like login.php dosen't register the variables when I'm having all the other stuff in the script. The same happens with...
  17. Naits

    OnClick form submit?

    How can I submit a form with the OnClick function? __________________ Visit my homepage .: Game universE :. http://gameuniverse.eg.st
  18. Naits

    Why dosen't this session work?

    Why dosen't this session work? login.php: ------------start of file------------------ <? if ((!$username) && (!$password)) login_form($username, $err_msg); elseif(($username) && (!$password)) login_form($username, &quot;Missing password!&quot;); else pass_check($username, $password); function...
  19. Naits

    sessions &amp; header(&quot;location: file.php&quot;) HELP!

    I'm having trouble using the header(&quot;location: file.php&quot;) when I'm using session. This is some of the code: if ($password == $data['password']) { session_start(); $_SESSION[&quot;userID&quot;] = $data['id']; echo &quot;Password accepted&quot;; header(&quot;location...
  20. Naits

    Pass variables from one page to another?

    I knew about the &quot;method=post&quot; thing... But I ment just a variable not a <form> variable. I'l give the session thing a try... Any good tutorials on sessions? __________________ Visit my homepage .: Game universE :. http://gameuniverse.eg.st

Part and Inventory Search

Back
Top