Search results

  1. B

    Strange behavior in IE/SQL/PHP

    I am having an issue recently with IE (v7.0.5730.11) displaying more than 500 records from an SQL query. The browser seems to constantly execute - displaying and rehiding records (and the vertical scrollbar grows and shrinks). I have let the page go for about 5 minutes and it will continue...
  2. B

    Lost keyboard/mouse in XP repair

    I'm working on a machine that needed to have WindowsXP repaired. On the repair, it comes to a point asking for a proprietary driver for the soundcard. At this screen, I notice that neither the keyboard or mouse are functioning. Prior to this, both are working fine (setup screen, dos, bios). I...
  3. B

    PHP Command line help w/ db connection

    The below code works perfectly in a browser: $server="xxxxxx"; $username="xxxxxx"; $password="xxxxxx"; $sqlconnect=mssql_connect($server, $username, $password); $sqldb=mssql_select_db("msdatatest",$sqlconnect); $date = mssql_fetch_array(mssql_query("SELECT CONVERT(VARCHAR(10), GETDATE()...