[PHP] SOAP and php

2005-09-12 Thread Leon Vismer
Hi What would be the best option for PHP and SOAP support. Many thanks -- Leon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Regular expression question

2005-08-11 Thread Leon Vismer
me, user_surname) values (0, 'Leon', 'mc_donald')"; unfortunately lookbehind assertions does not support non-fixed length chars so /(?<=(? $str = "insert into userComment (userID, userName, userSurname) values > (0, 'Leon', 'Vismer')"; >

Re: [PHP] Regular expression question

2005-08-11 Thread Leon Vismer
Hi > Just a quick note; why dont' you search on "user" since it's the constant > and replace 'user[A-Z]' with 'user_[a-z]' or in the case of userID > 'user[A-Z]{2}' This is part of my problem user will not always be constant, I basically want to be able to change between two naming conventions.

[PHP] Regular expression question

2005-08-11 Thread Leon Vismer
Hi I would like to convert from one naming convention within a sql statement to another. I have the following, $str = "insert into userComment (userID, userName, userSurname) values (0, 'Leon', 'Vismer')"; $match = array( "/([a-z]+)(ID)/", "/([

Re: [PHP] html_entity_decode () for …, ’, etc.

2005-08-10 Thread Leon Vismer
Hi Marco To awnser you question I do not know why it is excluded from the default decode array. Maybe it could be that these are multibyte characters (any takers)? You can get a list of the entities that are changed $trans = get_html_translation_table(HTML_ENTITIES); echo"";print_r($trans);ech

Re: [PHP] redirect based off server string

2005-08-10 Thread Leon Vismer
If you are using apache you can use the redirect module Servername www.ces.ncsu.edu ServerAlias * Redirect permanent / http://www.nc4h.org/ -- Leon On Wednesday 10 August 2005 16:52, Robert Sossomon wrote: > Anyone have a script or know of a way to check and see what the url is of a > syst