User Profile

Collapse

Profile Sidebar

Collapse
addisonp
addisonp
Last Activity: Mar 25 '08, 08:04 PM
Joined: Jul 11 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Here's a simple example on how to use those functions:

    $pattern = "/[^a-zA-Z0-9]/";
    $replacement = " _";
    $replaced_name= preg_replace($p attern,$replace ment,$original_ name);

    This example shows you the pattern you are searching for, in this case, anything that is not a letter or number and replacing it with an underscore. It takes an original name variable (i.e. Tac k#y) and after it...
    See more | Go to post

    Leave a comment:


  • addisonp
    started a topic php web service streaming SOAP output by nodes
    in PHP

    php web service streaming SOAP output by nodes

    Problem:
    How to have a php web service return the soap output message in a data stream, where one node is sent at a time to the client. This is due to sending a large amount of database information in XML format

    Question:
    Is there a good tutorial/example that shows how to write this in a web service server side?

    Web Searches:
    1. Jabber - as a possible solution, haven't gone too deep, been attempting...
    See more | Go to post
No activity results to display
Show More
Working...