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

    Two call routes, one phone?

    Hi, I have an IP Office 412 control unit and IP Office Manager 9.0 a) I'd like to have two incoming call routes going to the same extension which would be our receptionist. b) I'd also like to have the receptionist know which number the caller dialed when seen in Soft Console when answering the...
  2. alohaaaron

    DNS Intranet parent suffix issue

    Hi we are having problems with our dns parent suffix taking the place of our intranet dns name. We have an active directory of ad.companyname.com. Our public website is www.companyname.com hosted by a 3rd party hosting site. Our intranet site is at 192.168.0.36 which is an iis virtual ip. An...
  3. alohaaaron

    Fixed header table problem

    Hi, I'm using supertables (an html table with a fixed header) from this site http://www.matts411.com/post/super_tables/ When I use the table with a php file pulling data from a server it works fine. I can scroll up and down and the header stays fixed. The page is refreshed when the table is...
  4. alohaaaron

    XML Expat getting attribute names?

    Hi, I'm able to parse out XML elements and get the values of the attributes but not the names. For example I get ContactPricing and Price and the values 20 and 28 but I can't get the "email" or "phone". $parser=xml_parser_create(); $element_attrs = array(); function...
  5. alohaaaron

    How do I put an xml parsed file into a database?

    Hi, I don't have access to curl or open xml. I'm trying to put data into a database. In the fragment of code below it prints out the xml file correctly. Here is the XML File. $xml_data = "<?xml version=\"1.0\"?><member><Email>abc@home.com me</Email></member>"; How would I insert the email...
  6. alohaaaron

    How do I receive an XML file through HTTP?

    Hi, I have PHP 4.0 so don't have simple XML. I"m trying to use file_get_contents to read in the XML and then read the file till the end using fopen and other file commands. Is this correct or does a file actually exist? Thanks! $xml = file_get_contents ('php://input') or...
  7. alohaaaron

    How do I manipulate file_get_contents data?

    Hi, I'm trying to get the ["HTTP_RAW_POST_DATA"] data after an HTTP POST from of an XML file using the commands below. Can I manipulate this data using $fp=fopen($xml,"r"); or maybe I can't because it's not a file? $xml = file_get_contents ('php://input') or die('file_get_contents...
  8. alohaaaron

    How do I read HTTP posted XML file with PHP?

    Hi, I'm trying to read in an HTTP Posted XML file into my database using PHP. I don't have Simple XML, only Expat and DOM because my host hasn't upgraded to PHP 5 yet. Thanks in advance, Aaron
  9. alohaaaron

    help combine two tables

    Hi, I have this query. That does a union two combine two tables. But instead of putting the 'closedloans' results next to the 'Total Units Dropped' and 'drop_date' it puts them in the rows below it. How to get them to line up on the same rows? Thanks! SELECT COUNT(DROP_DATE) AS 'Total Units...
  10. alohaaaron

    query returns unwanted duplicates

    Hi, I have two tables a marketing table and checkout_log table joined with a Left join. I want to display all records between the two tables but if there is a duplicate entry it should only display the duplicate entry that is >= curdate() (below there are multiple pk=7 fk=7 entries that indicate...
  11. alohaaaron

    help with sql join

    Hi, I have the query below with the data and query below. I want to select dates from Intable that are with a one month range of the Outtable dates and group them. That works fine But I also want to select values within the data ranges where valuein=valueout. Thanks in advance, Aaron The end...
  12. alohaaaron

    SQL Join + Subquery Problem

    Hi, I am trying to get the results of all dates from the dateout table dynamically as well as performing a join but instead of querying them and listing them in a query one at a time I'd like to do it dynamically where the distinct dates are selected and looped through. How might I do this? The...
  13. alohaaaron

    Help with SQL Join + subquery please.

    Hi, I am trying to get the results of all dates from the dateout table dynamically as well as performing a join but instead of querying them and listing them in a query one at a time I'd like to do it dynamically where the distinct dates are selected and looped through. How might I do this...
  14. alohaaaron

    Scrolling w/arrow keys table problem

    Hi, I have a table with a locked header here http://www.premier-regroup.com/closedonline.php I try to scroll using arrow keys but there is a huge delay waiting for the cursor to appear in the adjacent cell. Also if I scroll to the right with the scroll bar and then click in a cell and use the...
  15. alohaaaron

    IP Office 4.1 call forwarding selection?

    Hi, I have IP Office 4.1 and have call forwarding set to unconditional with works fine but I want the user to be able to be able to toggle between two different numbers for call forwarding by calling into the Avaya phone system, typing in a code of some sort which would cause the forwarding to...
  16. alohaaaron

    IP Office 400 IP configuration, 5410 over internet?

    Hi I have IP Office 4.1 with IP Office Modules 412 & 400. I am not a telephony person. We had a vendor setup our office phone system. I'd like to be able to take one of our Avaya 5410 phones and use it at home and act as another office extension. How could I configure it to do so, or is...
  17. alohaaaron

    html fixed header table with frames?

    Hi I'm trying to align frame column headers with the body because I want to lock the header row but since the data in the body may not be equal to that of the column header with things get skewed. I've seen CSS versions of locking the header like this...
  18. alohaaaron

    capture text box contents onblur or onchange not working

    Hi, I'm trying to capture the contents of a text box with onblur or onchange after the text box is updated using this calender control. https://engineering.purdue.edu/ECN/Support/KB/Docs/JavascriptCalendar When I use an onblur='alert(this.value)' it is empty because I guess the box hasn't been...
  19. alohaaaron

    How do I align frame column headers with body?

    Hi I'm trying to align frame column headers with the body because I want to lock the header row but since the data in the body may not be equal to that of the column header with things get skewed. I've seen CSS versions of locking the header like this...
  20. alohaaaron

    full text Search not searching

    Hi, I'm trying to speed up my query by indexing for full-text and doing a full-text search but when I search by full-text nothing is returned. SELECT * from my_table WHERE MATCH(column_a) AGAINST ('WILLIAM*'); //nothing is returned column_a contains WILLIAMABC and is of type varchar (20) if...

Part and Inventory Search

Back
Top