Re: [PHP] New Service - Short URL Unshortener

2011-09-26 Thread Daniel Brown
On Sun, Sep 25, 2011 at 20:08, Mike Mackintosh wrote: > Hey All, > > Wanted to pass a kind word of a new service we launched called Unshortenr > (www.unshortenr.com) - which was linkrater.com. > > Input a short url and you'll get the target address, the page title, and a > description of the pag

[PHP] Sequential access of XML nodes.

2011-09-26 Thread Richard Quadling
Hi. I've got a project which will be needing to iterate some very large XML files (around 250 files ranging in size from around 50MB to several hundred MB - 2 of them are in excess of 500MB). The XML files have a root node and then a collection of products. In total, in all the files, there are g

Re: [PHP] Sequential access of XML nodes.

2011-09-26 Thread Stuart Dallas
On 26 Sep 2011, at 17:24, Richard Quadling wrote: > I've got a project which will be needing to iterate some very large > XML files (around 250 files ranging in size from around 50MB to > several hundred MB - 2 of them are in excess of 500MB). > > The XML files have a root node and then a collecti

Re: [PHP] New Service - Short URL Unshortener

2011-09-26 Thread m...@smtp.fakessh.eu
Le lundi 26 septembre 2011 02:08, Mike Mackintosh a écrit : > Hey All, > > Wanted to pass a kind word of a new service we launched called Unshortenr > (www.unshortenr.com) - which was linkrater.com. > > Input a short url and you'll get the target address, the page title, and a > description of the

Re: [PHP] Sequential access of XML nodes.

2011-09-26 Thread Adam Richardson
On Mon, Sep 26, 2011 at 12:24 PM, Richard Quadling wrote: > Hi. > > I've got a project which will be needing to iterate some very large > XML files (around 250 files ranging in size from around 50MB to > several hundred MB - 2 of them are in excess of 500MB). > > The XML files have a root node and

[PHP] Question about losing port number

2011-09-26 Thread vince chan
Hi: I have a general question about PHP: So basically I have a link, and I want the href to be absolute., so I do 'https://' . $_SERVER['HTTP_HOST'] . '/login' ; this gives me https://127.0.0.1/login on my local; however, what i really want is https://127.0.0.1:9090/login, it is missing ":9090". I

[PHP] Re: Question about losing port number

2011-09-26 Thread Shawn McKenzie
On 09/26/2011 05:45 PM, vince chan wrote: > Hi: > I have a general question about PHP: > So basically I have a link, and I want the href to be absolute., so I > do 'https://' . $_SERVER['HTTP_HOST'] . '/login' ; this gives me > https://127.0.0.1/login on my local; however, what i really want is >

Re: [PHP] Question about losing port number

2011-09-26 Thread Tim Streater
On 26 Sep 2011 at 23:45, vince chan wrote: > I have a general question about PHP: > So basically I have a link, and I want the href to be absolute., so I > do 'https://' . $_SERVER['HTTP_HOST'] . '/login' ; this gives me > https://127.0.0.1/login on my local; however, what i really want is > ht

Re: [PHP] Querying a database for 50 users' information: 50 queries or a WHERE array?

2011-09-26 Thread Dotan Cohen
On Thu, Sep 15, 2011 at 00:56, Alex Nikitin wrote: > > MySQL real escape string doesn't work, it's a bad solution to the > problem that has been with the internets since the very beginning, and > if people program like they are taught to by books, doesn't look like > it's going away any time soon

Re: [PHP] Sequential access of XML nodes.

2011-09-26 Thread Ross McKay
On Mon, 26 Sep 2011 14:17:43 -0400, Adam Richardson wrote: >I believe the XMLReader allows you to pull node by node, and it's really >easy to work with: >http://www.php.net/manual/en/intro.xmlreader.php > >In terms of dealing with various forms of compression, I believe you con use >the compressio