Jump to content

pstein

New Members
  • Posts

    5
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling

pstein's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. In a function of a php script there is the following code line: function convert_mails($source_path, $mail_file = '') { global $output_path; print "sp=$source_path"; // -- parameters must have a trailing backslash -- if ($source_path[strlen($source_path)] != '\\') $source_path .= '\\'; ... When running it yields the following error: sp=D:\storage\AABB.ACT\Archi0.FLD; Notice: Uninitialized string offset: 35 in D:\WAMP\www\test.php on line 67 where line 67 is the line with the "if" statement. So why and where is there an uninitialized string offset? How can I repair the code? Peter
  2. Ok, thank you but: 1.) It didn't work e.g. for hotmail.com 2.) In order to use it I have to reveal/transfer my login + passwords to this proxy servers (which I want to avoid). I need such a proxy php script for a MY OWN server. Simplicity matters for setting up such a proxy Any suggestions for that purpose? Peter
  3. I am sitting behind a firewall which blocks the http access to all popular free email providers like hotmail.com gmail.com .... The blocking is done by filtering out the domain names. So I am searching for a way to access the mailbox by a third domain e.g. mydomain123.com (which is under my control). I could imagine that there is a PHP code which can be setup on mydomain123.com which accesses the final hotmail.com mailbox by using POP3 fetches and SMTP sends. Is there such an PHP intermediate code? Peter
  4. Sorry for this newbie question. Could someone tell me on how to implement a simple php webservice? Need something like a "Hello world" for PHP webservice
  5. I would appreciate to get super simple PHP code on how a webservice can be implemented with PHP). Assume a MySQL database is setup and contains a SQL table with the following columns: ZIPCODE INTEGEER CITYNAME VARCHAR NUMCITIZENS numeric WATERSIDE BOOLEAN Now lets say a client is sending a SOAP webservice message to the XAMPP based web server with the ZIP code in the request data. PHP should lookup the record in the MySQL database and return CITYNAME, NUMCITIZENS and WATERSIDE values to the requesting webservice client. How would such a PHP code look like (only server side is of interest)? Thank you Peter
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.