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

    Require_Once Error

    Thanks for your reply, Where would the include path be? php.ini file? Or somewhere else?
  2. rjseals

    Require_Once Error

    I have a php/mysql based website/shopping cart hosted on godaddy. It was working fine for the last year then one day I get the following errors. Warning: require_once(DB/DataObject.php) [function.require-once]: failed to open stream: No such file or directory in...
  3. rjseals

    WSDL/SOAP issue

    Turns out it was an issue with the server itself.
  4. rjseals

    WSDL Issue

    Issue resolved. There was an issue with the server.
  5. rjseals

    WSDL Issue

    I am doing a lookup at the following site: http://auort.dynamiccity.com:8080/DCWebServices/services/AddressLookupService?WSDL I run it through a Validation client here...
  6. rjseals

    WSDL/SOAP issue

    I think my problem is that the results are needing to be returned into an array.
  7. rjseals

    WSDL/SOAP issue

    I am running php5 with the soap extension enabled and working. I am trying to do a simple address lookup but am getting stuck. Function getAddressData takes 5 items. address apt city state zip It returns 6 street address apt number city state zip code status This is my code <? $client = new...
  8. rjseals

    Javascript validation (drop down list)

    First option did it. I knew it was easy. Many thanks!
  9. rjseals

    Javascript validation (drop down list)

    This should be simple but driving me nuts. I have a simple validation function that basically just makes sure values are entered or selected. Here is the function: function validate_form() { if ( document.contact_form.cfirst_name.value == "" ) { alert ( "Please fill in a first name."...
  10. rjseals

    Should I get a masters?

    Rosie, They are accredited through the North Central Association http://www.waldenu.edu/c/About/About_231.htm It is a Master of Business Administration (High-Tech M.B.A. and I can specialize in one of the following Business Process Management Emerging Technologies Engineering Innovation...
  11. rjseals

    Should I get a masters?

    Hi Again, I think I found an even better solution. I found out about an online MBA degree from Walden University. As I understand it is accredited etc but the class instruction is through windows media so that will definately save me a couple of hours driving time per class which is...
  12. rjseals

    Should I get a masters?

    Thanks for your replies everyone. At this point I am leaning towards applying. I still need to take the GRE and about the only thing that I am leary about is the travel time it will take to get to class (45-60 minutes each way). But you have given me good food for thought. Thanks.
  13. rjseals

    Should I get a masters?

    I am currently contemplating getting a MS in Management of Information Systems through a University about 45 minutes away. A little background. I graduated with a Comp Sci degree in 2003 started working in a local school district (web development/tech support). I just started a new job in...
  14. rjseals

    data extraction

    Thanks for your response. When I run the script I get the following error. Can't locate object method "new" via package "CGI" (perhaps you forgot to load "CGI" ? Is this a library I need to install? Thanks again for you time and help.
  15. rjseals

    data extraction

    Hi I am a perl newbie trying to write a script that will go through an array of baskeball teams getting the season points per game average of players on that team if they average greater than 5 points per game. Here is what I have so far (very limited) #!C:\perl use LWP::Simple; $x=3; my...
  16. rjseals

    extracting data from website

    Im not sure whether I can do this in php or not. I know it can be done in Perl but don't know it very well and know php a little better so I wanted to see if it could be done that way. I want to get some stats from espn.com. I will put the team ID's that I want the stats of into an array...
  17. rjseals

    Display form based on radio button selection

    I have two different login systems login A and login B. So if possible I want to have two radio buttons that will display a login form (username and password) but send the login information to different places based on the radio that is selected. So for instance if A is selected when the user...
  18. rjseals

    Dates question

    One last question. I was hoping to return all dates between the two timestamps even if it has 0 opened tickets on that day. Right now with the query I am using it is only returning dates that have more than 0 open tickets on that day. Here is my query: SELECT FROM_UNIXTIME( ASSIGNED_ON...
  19. rjseals

    Dates question

    Duh, Im pretty sure I need to specify only the date instead of the whole string.
  20. rjseals

    Dates question

    First off thanks for all your help DRJ. I think I am getting this down correctly but getting wierd results. I have about 7 test tickets in this database with 3 opened on the 11/15/05 1 on the 11/16/05 3 on the 11/18/05 When I run this query: select FROM_UNIXTIME( SUBMITTED_ON ) , COUNT( *...

Part and Inventory Search

Back
Top