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 TouchToneTommy 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
  • Content: Threads
  • Order by date
  1. Naits

    Inline assembly with Dev-C++?

    Could anyone please tell me how I can do inline assembly with Dev-C++?
  2. 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!
  3. 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?
  4. Naits

    Downloadable icons?

    Does anyone know where I can download a good icon collection to use in my programs? Thanks!
  5. 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 =...
  6. Naits

    call PHP function with OnClick

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

    Time limit sessions in PHP4?

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

    OnClick form submit?

    How can I submit a form with the OnClick function? __________________ Visit my homepage .: Game universE :. http://gameuniverse.eg.st
  9. 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...
  10. 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...
  11. Naits

    Pass variables from one page to another?

    How can I pass an variable to a page to an other? without getting the varible displayd in the adressbar... Thanks! __________________ Visit my homepage .: Game universE :. http://gameuniverse.eg.st
  12. Naits

    How to generate a random session id?

    How can I generate a random session id? __________________ Visit my homepage .: Game universE :. http://gameuniverse.eg.st
  13. Naits

    Why dosent this simple JavaScript work?

    I'm trying to make an OnMouseOver background change in a <td>. This is the function i'm using: ------------------------------ function flipbg(element,mode) { if (mode==&quot;over&quot;) { cursortype = 'hand' picture = 'images/menu-over.gif' } else if...
  14. Naits

    VC++ 5.0 Runtime Files?

    Where can I download the VC++ 5.0 Runtime Files? __________________ Visit my homepage .: Game universE :. http://gameuniverse.eg.st
  15. Naits

    What is wrong with this link?

    I use this link: <a href=&quot;javascript:window.open('forum/index.php','popup','top=0,left=0,width=750,height=550,buttons=no,scrollbars=yes,location=no,menubar=no,resizable=yes,status=no,directories=no,toolbar=no');&quot;><img src=&quot;images/forum.gif&quot; border=0></a><br> The PopUp page...
  16. Naits

    Need host....

    Does anyone know about a free host that have MySQL & PHP support? __________________ Visit my homepage .: Game universE :. http://gameuniverse.eg.st
  17. Naits

    Deleting files?

    How can I trough PHP script delete files? __________________ Visit my homepage .: Game universE :. http://gameuniverse.eg.st
  18. Naits

    on select change??

    How to get the value of the opention when the select changes in a form? __________________ Visit my homepage .: Game universE :. http://gameuniverse.eg.st
  19. Naits

    Some text file questions.....

    Hi! 1. How to get num of lines in a .txt file? 2. How to read just one line from a .txt file? __________________ Visit my homepage .: Game universE :. http://gameuniverse.eg.st
  20. Naits

    Distributing my apps?

    Is there any instaler that have an optin for including the .dll files that vc++ programs use? __________________ Visit my homepage .: Game universE :. http://gameuniverse.eg.st

Part and Inventory Search

Back
Top