[PHP] About XSLT/XML Pagination

2007-07-22 Thread Kelvin Park
This site generally explains how pagination is done with xslt and xml. However it does not fully explain how to paginate the data when a certain number of rows are printed. For example, it wouldn't make another page after 100 item names were printed out where total there are 1000 items that

[PHP] About XSLT/XML Pagination

2007-07-22 Thread Kelvin Park
http://www.tonymarston.net/php-mysql/xsl.html#a1 This site generally explains how pagination is done with xslt and xml. However it does not fully explain how to paginate the data when a certain number of rows are printed. For example, it wouldn't make another page after 100 item names were

Re: [PHP] Pirate PHP books online?

2007-07-22 Thread David Powers
AmirBehzad Eslami wrote: I'm living in a country where people do not afford to buy real books. Most people earn $250~$400 per month. $50 for a book is too damn expensive. In addition, since US has restricted business with us, no body ships books to us. And we don't have Credit Card, since Master

Re: [PHP] session_decode from session handler

2007-07-22 Thread Tijnema
On 7/22/07, Jeffery Fernandez [EMAIL PROTECTED] wrote: On Sunday 22 July 2007 14:19, Jeffery Fernandez wrote: I have a similar problem I am facing with session data stored in the database from the set_session_handler. What I am trying to do is show a list of online users and the page they

Re: [PHP] Pirate PHP books online?

2007-07-22 Thread David Powers
Chris Shiflett wrote: David Powers wrote: I suspect that your estimate of the advances paid by Apress/friends of Ed is inflated. Based on the fact that this is almost identical to every other publisher (O'Reilly, Sams, etc.), and based on the fact that Richard said he has a lot of experience

Re: [PHP] Bundled GD compiling?

2007-07-22 Thread Tijnema
On 7/22/07, Hayden Livingston [EMAIL PROTECTED] wrote: I'm confused as to certain issues regarding the bundled version. The documentation says:: To use the recommended bundled version of the GD library (which was first bundled in PHP 4.3.0), use the configure option --with-gd. GD library

[PHP] Re: Re: Pirate PHP books online?

2007-07-22 Thread Michelle Konzack
Am 2007-07-17 09:17:27, schrieb tedd: That's you -- I need hard copy to look through. I want to feel and see the book, put sticky notes on it and use it as reference later. Me too... Last year I spent more money on books than I did on hardware. Me too... Greetings Michelle Konzack

[PHP] Re: Pirate PHP books online?

2007-07-22 Thread Michelle Konzack
Am 2007-07-16 18:52:18, schrieb Man-wai Chang: All I'm really saying is that there are a lot of questionable things out there, be it pirated software, books, movies and music, or other even more deplorable things. These problems will never, ever be solved by locking away the means

[PHP] Re: Pirate PHP books online?

2007-07-22 Thread Michelle Konzack
Hello Zoltán, Am 2007-07-19 15:14:53, schrieb Zoltán Németh: I didn't want to get involved in this thread, though it was interesting to read... However, an idea just came into my mind: what if you, as the author, could offer a download for a price which would be the same as what you get

[PHP] Re: Pirate PHP books online?

2007-07-22 Thread Michelle Konzack
Am 2007-07-18 12:13:04, schrieb David Powers: It's also important not to perpetuate the myth that the authors of computer books are in the same league as JK Rowling or Stephen King. A book that sells more than 5,000 copies is the exception, not the rule. I am selling over http://www.bod.de/

[PHP] Re: About XSLT/XML Pagination

2007-07-22 Thread Tony Marston
You misunderstand that article. All pagination is done within the program code in order to construct the SQL query with the relevant LIMIT and OFFSET values. The entire result set is then extracted from the database and written to an XML file, and the XSL transforms the whole XML file into a

Re: [PHP] Pirate PHP books online?

2007-07-22 Thread Ryan A
clip However, don't be under any illusion that the pirates are good-hearted philanthropists taking from the rich and giving to the poor. The best known pirate site sells advertising - a small banner reportedly costs $5,000 a month, and a larger one $10,000 a month. /clip Actually, most

Re: [PHP] Re: Re: Pirate PHP books online?

2007-07-22 Thread Tijnema
On 7/21/07, Michelle Konzack [EMAIL PROTECTED] wrote: Am 2007-07-17 09:17:27, schrieb tedd: That's you -- I need hard copy to look through. I want to feel and see the book, put sticky notes on it and use it as reference later. Me too... I prefer ebooks, you can search through it in a

Re: [PHP] Re: About XSLT/XML Pagination

2007-07-22 Thread Nathan Nobbe
Tony, what are the trade offs between creating xml files and creating objects in memory to pass to the xslt processor? if arbitrary xml data is only going to be used on a single dynamic page, then is it necessary to create a file? also, is there any reason to leverage the validation features of

Re: [PHP] Pirate PHP books online?

2007-07-22 Thread David Powers
Ryan A wrote: Just wanted to clear up the misconception that the main people who start copying (RIAA/MPAA slang pirates) are making money. So the real rogues... or pirates... are the siteowners, but when the site itself is named thepiratebay its not exactly like they dont already know it.

[PHP] RecursiveArrayIterator

2007-07-22 Thread Kevin Waterson
When I run the code below, I get an output of the array which is good. But the first member of the array output is 0=Array. Is there a way to prevent this? eg: 0 -- Array name -- butch sex -- m breed -- boxer name -- fido sex -- m breed -- doberman name -- girly sex -- f breed -- poodle ?php

Re: [PHP] Pirate PHP books online?

2007-07-22 Thread Crayon Shin Chan
On Sunday 22 July 2007 18:13, David Powers wrote: That's why books keep on coming. The situation in the music industry is similar. Perhaps you authors should make greater use of things like www.lulu.com where you can dictate the terms and cut out the middle-men. But if you're relying on the

Re: [PHP] Pirate PHP books online?

2007-07-22 Thread Crayon Shin Chan
On Sunday 22 July 2007 23:05, Ryan A wrote: Let me give you an example, Adam buys your book/cd/ or a video, rips it into digital format and uploads it onto...say... thepiratebay (since thats where you found your book's links) Adam does not make a cent by doing so, Not exactly, Adam's

Re: [PHP] Re: Re: Pirate PHP books online?

2007-07-22 Thread Dotan Cohen
On 22/07/07, Tijnema [EMAIL PROTECTED] wrote: Ebooks are free (in the name of warez). Now to not start this thread all over again, but, Authors, if you think you can't make enough money because of the warez, stop writing the books ;) For you, I hope that they do stop. Then you can go cry that

Re: [PHP] RecursiveArrayIterator

2007-07-22 Thread Nathan Nobbe
Kevin, im not sure why you need the RecursiveIteratorIterator; the RecursiveArrayIterator is capable of handling the nested arrays by itself. here is a revision of the code you posted, using PHP_EOL for newlines since i developed this via the CLI. ?php $array = array( array('name'='butch',

Re: [PHP] Re: About XSLT/XML Pagination

2007-07-22 Thread Tony Marston
Nathan Nobbe [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Tony, what are the trade offs between creating xml files and creating objects in memory to pass to the xslt processor? if arbitrary xml data is only going to be used on a single dynamic page, then is it necessary to

Re: [PHP] Re: Re: Pirate PHP books online?

2007-07-22 Thread Tijnema
On 7/22/07, Dotan Cohen [EMAIL PROTECTED] wrote: On 22/07/07, Tijnema [EMAIL PROTECTED] wrote: Ebooks are free (in the name of warez). Now to not start this thread all over again, but, Authors, if you think you can't make enough money because of the warez, stop writing the books ;) For you,

Re: [PHP] Re: About XSLT/XML Pagination

2007-07-22 Thread Nathan Nobbe
thanks for your reply tony. i started reading about xsl almost 2 years ago, but only started experimenting using it in conjuction w/ php about 6 months ago, so im quite new to it still. the greatest thing ive learned from your articles so far is a modularization approach for the xsl files. my

Re: [PHP] Re: About XSLT/XML Pagination

2007-07-22 Thread Tony Marston
Nathan Nobbe [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] thanks for your reply tony. i started reading about xsl almost 2 years ago, but only started experimenting using it in conjuction w/ php about 6 months ago, so im quite new to it still. the greatest thing ive learned

Re: [PHP] Re: About XSLT/XML Pagination

2007-07-22 Thread Nathan Nobbe
thanks tony, youve helped me out alot. -nathan On 7/22/07, Tony Marston [EMAIL PROTECTED] wrote: Nathan Nobbe [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] thanks for your reply tony. i started reading about xsl almost 2 years ago, but only started experimenting using it in

Re: [PHP] Re: Re: Pirate PHP books online?

2007-07-22 Thread Dotan Cohen
On 22/07/07, Tijnema [EMAIL PROTECTED] wrote: Ebooks are free (in the name of warez). Now to not start this thread all over again, but, Authors, if you think you can't make enough money because of the warez, stop writing the books ;) For you, I hope that they do stop. Then you can go

Re: [PHP] Pirate PHP books online?

2007-07-22 Thread Ryan A
Hey, clip David Piracy, unauthorized copying, call it what you will, involves a chain. Perhaps if the poor saps who make the unauthorized copies realized just how they're being exploited, things might change. /clip David Sorry, but disagree with you here, the poor saps know the site owners

Re: [PHP] RecursiveArrayIterator

2007-07-22 Thread Kevin Waterson
This one time, at band camp, Nathan Nobbe [EMAIL PROTECTED] wrote: Thanks for the response. I was hoping to avoid this sort of recursion within userspace and keep it at a lower level. Should not the recursive iterator recurse so we dont need to be using user defined functions?

Re: [PHP] RecursiveArrayIterator

2007-07-22 Thread Kevin Waterson
This is what I have so far.. ?php $array = array( array('name'='butch', 'sex'='m', 'breed'='boxer'), array('name'='fido', 'sex'='m', 'breed'='doberman'), array('name'='girly','sex'='f', 'breed'='poodle') ); $iterator = new RecursiveIteratorIterator(new

Re: [PHP] checking if extension loaded

2007-07-22 Thread Vanessa Vega
The GD library was installed by the administrator, so nowthe function already works.:-) Richard Lynch [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] On Wed, July 18, 2007 4:37 am, Vanessa Vega wrote: I have a function that creates a thumb file(thumbnail) and and an image

Re: [PHP] RecursiveArrayIterator

2007-07-22 Thread Nathan Nobbe
there is no base case in the printArrayKeysRecursively method; therefore it is not handling recursion; its just using the RecursiveArrayItereators public methods. i think that is totally appropriate. but i believe i understand what youre getting at; namely the RecursiveArrayIterator implments

Re: [PHP] RecursiveArrayIterator

2007-07-22 Thread Jim Lucas
Kevin Waterson wrote: This is what I have so far.. ?php $array = array( array('name'='butch', 'sex'='m', 'breed'='boxer'), array('name'='fido', 'sex'='m', 'breed'='doberman'), array('name'='girly','sex'='f', 'breed'='poodle') ); $iterator = new RecursiveIteratorIterator(new

[PHP] strange stripos behavior

2007-07-22 Thread Bruce Cowin
I'm using PHP 5.1 on IIS. I have an app that uses MimeDecode to load mime files and I've built an object to parse them into their various parts; i.e., $msg-Body(), $msg-Sender(), etc. I'm using stripos() to look for a string (that I know is in my test files). It works if I search in

[PHP] can't open a file

2007-07-22 Thread Ken Tozier
Hi I'm trying to create/open a file for write in a subfolder of the folder that contains my PHP script but am having no luck. Here's the relevant code $oldPath= '/test/old_page_'.$oldRecord['page_number'].'.txt'; $oldHand= fopen($oldPath,