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. matthewgl

    How to change IVR greeting on SX200

    Hello, How do I go about changing an IVR greeting on an SX200? We have a few greetings, certain lines ring into certain greetings. I was wanting to record a new one, I figured I could do this using an attached Mitel phone? Thanks! -Matthew
  2. matthewgl

    Teleworker/ICP200 No internal DTMF

    kwbMitel: thanks for that info. im not a mitel tech, am i able to update it through the teleworker or would a mitel tech need to come bring software to do that, have proper licensing, etc? Thanks
  3. matthewgl

    Teleworker/ICP200 No internal DTMF

    Just now got back to that site to check software versions. SX-200_ICP_5.0.0.18 MX Mitel 6000 Managed Application Server Mitel Networks 6000 MAS 6.1 Kernel Version 2.4.21-20.EL.c0 If this is not what you need, please tell me where to get the correct info and I will get it. I just found this by...
  4. matthewgl

    Teleworker/ICP200 No internal DTMF

    btw the icp controller broke and was replaced a couple months ago, im not sure if this is when the dtmf issue started or not. ive logged into the teleworker and done connection tests and it seems to check out ok. Im not sure if the new icp controller would have an ID that we would have to enter...
  5. matthewgl

    Teleworker/ICP200 No internal DTMF

    Hello, I have mitel 5212 ip phones. In the 5212 i put in gateway of the teleworker. The teleworker has a public IP. We have a sx200 and icp controller. Far as I know the teleworker and icp controller is what allows the 5212 to talk to the old analog sx200. The 5212 is on a different network in...
  6. matthewgl

    How to check if a Javascript variable exists?

    <script type="text/javascript"> var __JSON = "yes" if (typeof __JSON != 'undefined') { alert('It has been used before'); } else { alert('It has not been used before'); } </script> i got it all working like so ^^^ variable has to be in quotes
  7. matthewgl

    How to check if a Javascript variable exists?

    does not work ^^^^
  8. matthewgl

    How to check if a Javascript variable exists?

    <script type="text/javascript"> var __JSON = yes if (typeof __JSON != 'undefined') { alert('It has been used before'); } else { alert('It has not been used before'); } </script>
  9. matthewgl

    How to check if a Javascript variable exists?

    this does not work if you set var __JSON = whatever it does not pop up the alert box sayin alert('It has been used before'); ive tried everything to get this type of script to work
  10. matthewgl

    Trying to pass array into another array

    vacunita: thanks that worked perfectly! jpadie: thanks for the tip, i merged it into one database connection
  11. matthewgl

    Trying to pass array into another array

    jpadie: I run the first: $result = mysql_query("SELECT ORDERS_ID FROM orders WHERE customers_id='1'"); That returns orders_ids (1,2,3,etc) Then i need to run another query to find the data from table Orders_products using each of the orders_ids (1,2,3,etc): $result = mysql_query("SELECT *...
  12. matthewgl

    Trying to pass array into another array

    $result = mysql_query("SELECT * FROM orders_products WHERE orders_id='$orders[0]'"); i can do that, but not sure how to get it to do [1][2][3][4] etc
  13. matthewgl

    Trying to pass array into another array

    awesome, "In your next query you want to select records that match any of the order_id's you extracted previously?" correct! Not sure how to do that, something like this i suppose: //execute the SQL query and return records $result = mysql_query("SELECT * FROM orders_products WHERE...
  14. matthewgl

    Trying to pass array into another array

    //connection to the database $dbhandle = mysql_connect($hostname, $username, $password) or die("Unable to connect to MySQL"); echo "Connected to MySQL<br>"; //select a database to work with $selected = mysql_select_db("$dbname",$dbhandle) or die("Could not select $dbname"); //execute the...

Part and Inventory Search

Back
Top