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

    Parse Json string

    I get the following output from an API call: $json = file_get_contents($service_url); the var_dump of $json gives me: string(308) " [{"Transaction_ID":2805579},{"Transaction_ID":2777876},{"Transaction_ID":2808406}]" However, var_dump(json_decode($json)) returns a null. What am I doing wrong?
  2. junkie8

    Memcache

    I have memcache installed on my RHEL machine. The following script works perfectly when I execute the php script at the command prompt. However, when I try to execute this script from a browser, it returns 'Could not connect'. I have: - changed localhost to 127.0.0.1 - checked the port 11211...
  3. junkie8

    Memcache Not working

    I have memcache installed on my RHEL machine. The following script works perfectly when I execute the php script at the command prompt. However, when I try to execute this script from a browser, it returns 'Could not connect'. I have: - changed localhost to 127.0.0.1 - checked the port 11211...
  4. junkie8

    JQuery Dialog Page

    Hello, In my php code, I am retrieving entries from a table in the database and displaying them on the webpage using a while loop. The while loop creates a button that opens a dialog form when clicked and it displays some values from the database. With my code below, the dialog form only...
  5. junkie8

    Alarm

    Hi Everyone, I have to set off three alarms at different times of the day. The first two can go off anytime between 8:00am-12:00 pm. The second can go off anytime between 1:00pm-5:00 pm. And the third one will go off at 7:30 pm. Do I need to create separate alarm manager for each alarm?
  6. junkie8

    Unix Epoch Time

    Hi, I am trying to insert some fields of a table into another table. The time field of the first table stores unix epoch time that I want to be convert into a readable format before being inserted into the second table. I tried the following query but time formatting is not working. INSERT...
  7. junkie8

    Adding time

    This if condition is only supposed to be executed if my aTime is 2 hours more than lastaTime. Format of aTime and lastaTime is "06:30:00 AM" for example If (CDate(aTime) + TimeValue("02:00:00")) >= CDate(lastaTime)) { } But the code in the if condition is executed even if it is not true. Can...
  8. junkie8

    Graphs in Excel

    I want to plot graphs in excel using VBA. How do I do that? I have no idea how to do it?
  9. junkie8

    Import Excel Sheet via VBA into Access

    Can someone tell me how to import excel sheet into access? I know how to import a text file, but do not know how to do it for excel Dim strname As String Dim DataRead, db, rst, Counter, iPos Dim arList Dim d As Date Dim dList Dim num As Integer Dim str As String...
  10. junkie8

    Popup Window Close issue

    Hello All, I wrote the following javascript code to open a pop up window in ff and ie. function schedulerOpener(schedulerWindow) { var browser = navigator.appName; if (browser=="Microsoft Internet Explorer") window.showModalDialog(schedulerWindow, 'window.self'...
  11. junkie8

    Delete a row from excel sheet

    Hello, I am trying to delete the rows have a some commonality with the column in another sheet. But the code is not working Sub RemovePlants() Dim plant As Range Dim plant2 As Range Dim plantStr As String Dim plantStr2 As String...

Part and Inventory Search

Back
Top