Jump to content

iLLuZZiOn

Member
  • Posts

    4
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Australia

About iLLuZZiOn

iLLuZZiOn's Achievements

0

Reputation

  1. I have to make a process management system using threads and such for uni, and I've got a very strange error, when i create a thread the label of the last thread changes as well...hard to explain, ill post the code that i think is causing the problem Header stuff This is the function that creates the threads. and this is the output Any help would be greatly appreciated, im not that good with c, and its prolly something really stupid, but i just cant figure it out
  2. I have it, its very nice, but too buggy try adding a crystal report to ur project
  3. i was just about to post this as well For the video the hardware ids and device id's are PCI\VEN_8086&DEV_2562&SUBSYS_52478086&REV_03\3&267A616A&0&10 PCI\VEN_8086&DEV_2562&SUBSYS_52478086&REV_03 PCI\VEN_8086&DEV_2562&SUBSYS_52478086 PCI\VEN_8086&DEV_2562&CC_030000 PCI\VEN_8086&DEV_2562&CC_0300 Sound also didnt install, info for it is PCI\VEN_8086&DEV_24C5&SUBSYS_01038086&REV_02\3&267A616A&0&FD PCI\VEN_8086&DEV_24C5&SUBSYS_01038086&REV_02 PCI\VEN_8086&DEV_24C5&SUBSYS_01038086 PCI\VEN_8086&DEV_24C5&CC_040100 PCI\VEN_8086&DEV_24C5&CC_0401 and here is the page with drivers for that mobo http://www.intel.com/design/motherbd/rg2/rg2_drive.htm
  4. instead of just putting session_start(); put this code: if (isset($_GET['s'])) session_id($_GET['s']); session_start(); then on everylink on your site put: <a href=\"myurl.php?s=".session_id()."\">My link</a> either that or you can make a javascript that adds the session id onto any link, im not sure how you would do this.. the only other thing, is instead of echo ing the page content, save it to a variable. Then go: $mySite = "site content"; $mySite = str_replace( ".php", ".php?s=".session_id(), $mySite); good luck
×
×
  • Create New...