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: *

  1. TanTrazz

    count $_FILES upload fields

    Hi guys, Im getting insane. I can't get it working. What i want to do is count the amount of files in the post. I've got 8 file fields. Pic 1: <input type="file" name="item_file[]"> Pic 2: <input type="file" name="item_file[]"> Pic 3: <input type="file" name="item_file[]"> Pic 4: <input...
  2. TanTrazz

    Send mail with multiple attachments

    TnQ it works fine! TanTrazz
  3. TanTrazz

    Send mail with multiple attachments

    Hi guys, Im making a mailform with attachments. It works with the code below for one attachment. But i want to have 2 attachtments attached. Does someone know how i can do it? <?php // Your e-mail adress: $mailto = "naam@sitenaam.nl"; # Maximum size of attachment in bytes: $max_attach_size =...
  4. TanTrazz

    Loop insert Query

    Hi all, Im trying to insert records trough an loop but it won't work. Here is my code SET RSBtkt = MyConn.execute("SELECT * FROM TABLE") WHILE NOT RSBtkt.EOF InsertA = "INSERT INTO Table(cell1, cell1, cell1, cell1) VALUES ('"& RSBtkt("cell1") &"','"& RSBtkt("cell2")...
  5. TanTrazz

    Send SMS Siemens M20 Modem

    Hi All, Im trying to send an sms with via trough an Siemens M20 Modem but i can't get it working. This is my code: Private Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long) Private Sub Form_Load() MSComm1.Settings = "9600,n,8,1" 'Change this with the Baud rate of your modem...
  6. TanTrazz

    Array Filling

    Gmmastros, Its works fine thank u very much. tsuji, Thanks for the fast reply. Greetz TanTrazz
  7. TanTrazz

    Array Filling

    Hi all, I've got an array with max 4 values. But all 4 values must be filled with a number. Is it possible to fill the array with for example a 0 (zero) value? or maybe with an if statement? Test = Split(ids, ",") Here i split the ID's. if there are only 2 values are clicked there would be...
  8. TanTrazz

    Validate Multiple Select Box

    Hi Kaht, Thanks for the code it works fine!! TanTrazz
  9. TanTrazz

    Validate Multiple Select Box

    Hi All, Does someone know how to validate an multiple selectbox? I want to max the selection to 4. When they select the fifth they have to get an message which tell them they can only select 4 options. <form method="_GET" action="post.asp" name="form1"> <select name="ckb" size="20"...
  10. TanTrazz

    DB + Math

    jpadie, Now it works. Thank u very much for your help!!!!!! Greetz TanTrazz
  11. TanTrazz

    DB + Math

    jpadie, I've got it working, almost... It displays the rows only all the values are 0 do i have to change something in the line echo "<td>".($rows[$i]['value'.$j] - $rows[$r]['value'.$j]) ."</td>"; 'value' for example??? TnQ TT
  12. TanTrazz

    DB + Math

    jpadie, The above question is not really clear. The output is 000 000 000 000 000 1 2 3 4 5 instead of 1 2107 1000 50 2 901 1000 50 3 8532 1000 50 Greetz TT
  13. TanTrazz

    DB + Math

    Hi jpadie, You've helped me the last time also with this. ThQ for that. When i copy the code into my page the following output appears: 000 000 000 000 000 1 2 3 4 5 Thanks you in advance TT
  14. TanTrazz

    DB + Math

    Hi All, Question: Ive got these values in a MYSQL db. ID Value1 Value2 Value3 1 7250 1000 50 2 9357 2000 100 3 10258 3000 150 4 18790 4000 200 What i want to do is calculate the differences between 1 and...
  15. TanTrazz

    DB Values + Math

    TnQ jpadie, Im gonna try this!!! Thank You
  16. TanTrazz

    DB Values + Math

    Hi All, Question: Ive got these values in a MYSQL db. ID Value 1 7250 2 9357 3 10258 4 18790 What i want to do is calculate the differences between 1 and 2, 2 and 3, 3 and 4 etc. The output would be: 1 2107 2 901 3 8532 Does someone knows how to do this in PHP...
  17. TanTrazz

    Count last value + next value and so on

    Thanks guys It worked wonderfull. TanTrazz
  18. TanTrazz

    Count last value + next value and so on

    Or is it possible in the SQL Query? TanTrazz
  19. TanTrazz

    Count last value + next value and so on

    Hi All, Im creating a graph in asp. What i want to do is count the previous value + next value and so on. Example: ------------------------------ | ID | Name | Price | ------------------------------ | 1 | cars | 122 | | 2 | toys | 90 | | 3 | games |...
  20. TanTrazz

    Withevents &quot;BC30506: Handles clause requires a WithEvents variable&quot;

    Hi ca8msm, Ive deleted the grid. Created again, but still get the error. TanTrazz

Part and Inventory Search

Back
Top