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 strongm 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
  • 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

    opening a cookie the 2nd time doesnt work?

    Yes i did go to the link you posted. I did read it, but it was just that I didn't look deep enough. Ok... so far so good I got the correct working example; <?php $a = 1; $b = 2; function Sum() { global $a, $b; $b = 132; echo "orig: $b <br>"; } Sum(); function Go(){ global $b...
  6. altctrldel

    How do you make links &quot;highlighted&quot; when unread..

    thanks guys, but that still isn't the one I was looking for. Its a little more advanced than your regular visited and unvisited links. Because unlike your regular visited links, once you clean out your cache every link is going to go back to unvisited state. Whilst this one doesn't.
  7. altctrldel

    quick question on UPDATE

    yup thanks got it na awhile ako. trial n error hehe
  8. 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...
  9. altctrldel

    opening a cookie the 2nd time doesnt work?

    the 1st time it read was inside a function. <<--- it exists in this one. I can print it out. then the 2nd time i wanted to read it was in another function but it just wont show up.
  10. 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...
  11. altctrldel

    directory file uploader to a single file uploader

    @_@ ok I'd try to remember that thanks for all these extra tips ^^
  12. altctrldel

    How do you make links &quot;highlighted&quot; 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...
  13. altctrldel

    directory file uploader to a single file uploader

    weee thanks guys! finally got it working :D here are my codes: if ($_FILES) { $userfile = addslashes (fread (fopen ($_FILES["userfile"]["tmp_name"], "r"), filesize ($_FILES["userfile"]["tmp_name"]))); $file_name = $_FILES["userfile"]["name"]; $file_type = $_FILES["userfile"]["type"]...
  14. 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 =...
  15. altctrldel

    2 values in the value property?

    thanks! its working great now. ^^
  16. 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...
  17. altctrldel

    Disable/enable forms depending on option box selected

    some one posted this before; It used to work for select boxes but when i changed it to check boxes it just wont disable. help. ^^
  18. 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...
  19. altctrldel

    Numbers only please

    question: function numsOnly(evt) { return ('0123456789.'.indexOf(String.fromCharCode((evt) ? evt.which : event.keyCode)) > -1); } onload = function() { document.getElementById('myNumsOnlyField').onkeypress = numsOnly; } Q.) How about backspace...
  20. 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...

Part and Inventory Search

Back
Top