Skip to content

Add namespace Prefix in Nusoap PHP

I’m using nusoap v 1.123, I’m trying to add the prefixes urn in my generated request of nusoap This is what I am expecting <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/…

Regex to find content of the last occurence of square brackets

Hi Everybody, I’m Currently using preg_match and I’m trying to extract some informations enclosed in square brackets. So far, I have used this: /[(.*)]/ But I want it to be only the content of the last occurence – or the first one, if starting from the end! In the following: string = “…

Getting META description via jQuery

Let’s say I do a simple AJAX request (in jQuery) like geturl.php?url=http://google.com and geturl.php is this: <?php if($_GET['url']) { $url=$_GET['url']; echo …