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

    Maximum hardware limits

    Maximum hardware limits for the latest IBM: AIX server? Any keyword I have to use in google? I already tried 'maximum', 'limits', etc. It's for a comparative OS comparison I'm making. TIA
  2. altctrldel

    Maximum hardware limits?

    Maximum hardware limits for the latest HP-UX server? Any keyword I have to use in google? I already tried 'maximum', 'limits', etc. It's for a comparative OS comparison I'm making. TIA
  3. altctrldel

    Where can I find maximum hardware limits?

    Maximum hardware limits for the latest solaris enterprise server? Any keyword I have to use in google? I already tried 'maximum', 'limits', etc. It's for a comparative OS comparison I'm making. TIA
  4. altctrldel

    How to export mysql tables into a normal text file using a syntax?

    How to export mysql tables into a normal text file using syntax on the command prompt without any GUI? thanks!
  5. altctrldel

    quick question on UPDATE

    mysql_query("UPDATE tblrepair SET ( mgt_id,rep_status,rep_notes) VALUES('$mgtid','$decision','$comments') WHERE rep_id='$rid'") or die ("Error in registration sql:" . mysql_error()); I always get a You have an error in your SQL syntax; check the...
  6. altctrldel

    opening a cookie the 2nd time doesnt work?

    well at the top there exists; $cookie_read = explode("|", base64_decode($user)); // define variables to hold cookie values. $userid = $cookie_read[0]; and then further down (in another function) I want to get the exact same data so I try to use the same codes again but it wont work. I try...
  7. altctrldel

    How do you make links "highlighted" when unread..

    .. and then once it has been opened it is no longer highlighted? you know; like in our email inboxes when someone sends us a new unread email. So basicly, I'd just have to send a query into the database, collect all the rows, order them by date (desc) so I'd have the latest row entred at the...
  8. altctrldel

    directory file uploader to a single file uploader

    heres the code I followed from spoono.com in uploading all image files in a certain directory into rows in mysql: while ($file = readdir($dir_handle)) { $filetyp = substr($file, -3); if ($filetyp == 'gif' OR $filetyp == 'jpg') { $handle = fopen($file,'r'); $file_content =...
  9. altctrldel

    2 values in the value property?

    is it possible to pass 2 values in a option/select/check box? here is my current script: <input name=\"planyr\" type=\"radio\" value=\"$one\" checked=\"checked\" />1 Year Extended Warranty Plan (<strong>$one dollars</strong>) well it gets data from a row which has prices for 1, 2 and 3 years...
  10. altctrldel

    Disable/enable forms depending on option box selected

    well; lemme give a visual example; http://img126.imageshack.us/img126/5679/howtodo6to.gif There will be 2 forms; one for the set A and another for set B. depending on wheter option box A is selected, all the input check boxes/submit button in set B is disabled and vice versa. the option...
  11. altctrldel

    variable in a table name?

    been fiddling with this for the past 2 hrs; while($row = mysql_fetch_array($sql)){ $userid = $row['ws_id']; $username = $row['ws_username']; $password = $row['ws_password']; $ipaddress = $row['ws_ipaddress']; } how do I insert a variable in the field names of the tables I want to get data...
  12. altctrldel

    after a succesful update, get data from mysql?

    Well this is what I intend to do; once the php scipt has succesfully updated the database from the user input, i need it to automatically retreive the primary key (id number which increments using the database ang not php) which it has been assigned to and then store it in the session for...
  13. altctrldel

    a folder sp2 made....

    after I installed sp2 it made a folder in my other partition: "E:\ee038d47931b973cs416479a8d2060\i386" Is it safe to delete this folder?
  14. altctrldel

    IIS wont detect local computer

    I've just installed IIS on my xp pro and whenever I open IIS from my computer > manage > services and apps > IIS it gives my this error box: "The dependancy service or group failed to start" When i goto the IIS from admin tools it doesn't show my computer name. i think its due to some...
  15. altctrldel

    Installaion File runs in MSDOS

    I've downloaded an installation file (.exe). It was fully downloaded. But the problem is that it is set to use MS-DOS to run it, so everytime i try to open it it says "Program to big to fit in memory" and closes. Is there any way I can make it install normally and not run on ms-dos without...
  16. altctrldel

    insert a swf and png file?

    can you insert a swf and png file inside vb6? if so, how? thanx.
  17. altctrldel

    Program Error - wintsk32.exe

    ----------------------------------------------------------- Program Error wintsk32.exe has generated errors and will be closed by Windows. You will need to restart the program. An error log is being created. ----------------------------------------------------------- I've been gatting a lot...

Part and Inventory Search

Back
Top