Re: [PHP] Re: Allowing multiple, simultaneous, non-blocking queries.

2010-03-28 Thread Nathan Rixham
Phpster wrote: I am interested in how you are handling security in this process. How are you managing sessions with the restful interface? This is the one thing that really interests me with the whole restful approach. one doesn't do sessions with rest :)

[PHP] Re: natural language processing (nlp) (was: natural text / human text analysis)

2010-03-17 Thread Nathan Rixham
Rene Veerman wrote: I've browsed wikipedia, sf.net and google for code papers on what is commonly known as NLP. ... It's an interesting problem though, and probably a profitable one, so i'm going to spend some time trying to come up with something better from scratch. On Sun, Mar 14,

[PHP] Re: CodeBubbles -- the coolest IDE innovation since since syntax highlighting and intellisense

2010-03-14 Thread Nathan Rixham
Daevid Vincent wrote: Wow. Maybe the coolest IDE innovation I've seen since syntax highlighting and intellisense. http://www.cs.brown.edu/people/acb/codebubbles_site.htm http://www.cs.brown.edu/people/acb/codebubbles_site.htm

[PHP] Re: headers help

2010-03-12 Thread Nathan Rixham
MEM wrote: Hello all, I must confess I know the very basics on this language and have even less knowledge about http headers. I wish you could help me out on this: mime headers not http :) I have a form that sends html e-mails and an optional file as attachment. The issue is that, if the

[PHP] Entry-Level Slot Available in Denver

2010-03-04 Thread Nathan Nobbe
hi all, we have a fresh opening for an entry-level php developer in stapleton (north east denver). feel free to hit me up off-list w/ questions or of course, if you are interested in the position, thx, -nathan *Required Skills (Proficiency expected)* . PHP5 – Object Oriented Concepts a must

[PHP] Re: Database design

2010-02-26 Thread Nathan Rixham
Angus Mann wrote: Hi all. I know this is not strictly a PHP question but the code will be written in PHP, and I figure the folks here will be well versed in the questions I raise. Please feel free to contact me off the list if appropriate. I need some assistance with database design for a

[PHP] Re: ctype_print, the British Pound and other non-ASCII characters

2010-02-26 Thread Nathan Rixham
Bob wrote: I'm seeing mischief from ctype_print. So far as I can tell, the British Pound symbol, '£' is considered a printable character according to the locale I use on my Ubuntu box. But even across two years, two boxes, several versions of Ubuntu (from 7.04 to 9.10, one x86, one

Re: [PHP] How to get the 'return type' of a function?

2010-02-23 Thread Nathan Rixham
real way around this is to specify a return type in a PHPDoc block, then parse that using reflection to get the @return parameter. another option is to use something like haXe which is an ECMA style typed language that compiles to multiple targets, one of which is PHP. Regards! Nathan -- PHP

Re: [PHP] PDOStatement::rowCount() bug?

2010-02-22 Thread Nathan Nobbe
TESTING WHERE id = 1); echo Num rows deleted: . $oStmt-rowCount() . PHP_EOL; } catch(Exception $oE) { die($oE-getMessage() . PHP_EOL); } ? - OUTPUT - Num rows inserted: 1 Num rows updated: 1 Num rows deleted: 1 -nathan

Re: [PHP] PDOStatement::rowCount() bug?

2010-02-22 Thread Nathan Nobbe
On Mon, Feb 22, 2010 at 8:39 PM, Paul M Foster pa...@quillandmouse.comwrote: On Mon, Feb 22, 2010 at 08:18:25PM -0700, Nathan Nobbe wrote: On Mon, Feb 22, 2010 at 7:50 PM, Paul M Foster pa...@quillandmouse.com wrote: Using MySQL 5.075, PHP 5.25 on Debian unstable. Has anyone

Re: [PHP] unpacking an array of structs...

2010-02-22 Thread Nathan Nobbe
. Anyone know the trick to this? I'm curious how you are getting to the point of calling pack() in the first place. can we see the bit of your script that interacts with this c code? -nathan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Pre/Post inc (Was array conversion)

2010-02-20 Thread Nathan Rixham
easier. I myself still refer back to these base sections periodically, and every time I do - a new detail pops out that makes something easier. [1] http://docs.php.net/manual/en/langref.php Many Regards, Nathan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] Excel Spreadsheets and PHP

2010-02-20 Thread Nathan Rixham
Bastien Koert wrote: You can also create an htnl table and excel will happily handle that as well. The real trick is to get IE to accept the stream as a file download. I find that I need to save the file first and the push the file down. +1 this approach; Excel is HTTP aware and you can

Re: [PHP] Advice on maintaining public and private files

2010-02-20 Thread Nathan Rixham
developer to try and use PHP to solve every problem - we all fall fowl of it often (I've wasted years doing things in PHP that really should have been done with a different tech). [1] http://httpd.apache.org/docs/2.0/howto/auth.html Regards! Nathan -- PHP General Mailing List (http

Re: [PHP] Dumb Question - Casting

2010-02-18 Thread Nathan Rixham
(7) lovely! - note: serializing gives us the exact value of the float regards, Nathan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: PHPDoc (not PhD) question.

2010-02-18 Thread Nathan Rixham
Richard Quadling wrote: Hello. Does anyone have any other templates for PHPDoc? I've found zym's ExtJS PHPDoc template, but this doesn't seem to be maintained and there are a few bugs (source code not styled, source code rendered as external windows with broken links, ordered and

Re: [PHP] Magnetic Stripe Reader or Barcode to PHP

2010-02-18 Thread Nathan Nobbe
someone work with the code to tie it into their system and put it to good use. -nathan

[PHP] Re: DocBlocking SOAP types.

2010-02-16 Thread Nathan Rixham
Richard Quadling wrote: Hi. I want to docblock a set of properties to be xml primitive datatypes [1]. Considering that this is the correct type for the XML/SOAP/WSDL communication, how do I bypass Zend_WSDL / Zend_AutoDiscovery so that these types go through cleanly. I know that as far as

[PHP] Re: DocBlocking SOAP types.

2010-02-16 Thread Nathan Rixham
Nathan Rixham wrote: Richard Quadling wrote: Hi. I want to docblock a set of properties to be xml primitive datatypes [1]. Considering that this is the correct type for the XML/SOAP/WSDL communication, how do I bypass Zend_WSDL / Zend_AutoDiscovery so that these types go through cleanly. I

[PHP] Re: DocBlocking SOAP types.

2010-02-16 Thread Nathan Rixham
Richard Quadling wrote: On 16 February 2010 16:41, Nathan Rixham nrix...@gmail.com wrote: Nathan Rixham wrote: Richard Quadling wrote: Hi. I want to docblock a set of properties to be xml primitive datatypes [1]. Considering that this is the correct type for the XML/SOAP/WSDL

[PHP] Re: UK Project Opportunity

2010-02-16 Thread Nathan Rixham
Manuel Lemos wrote: Hello, on 02/15/2010 11:37 AM Nathan Rixham said the following: I need to find a skilled PHP dev, UK based, with long term availability, in the short term to join me on a project and ultimately be prepared to take over the project and own it. Remote contract work w

[PHP] Re: UK Project Opportunity

2010-02-16 Thread Nathan Rixham
Nathan Rixham wrote: Manuel Lemos wrote: Hello, on 02/15/2010 11:37 AM Nathan Rixham said the following: I need to find a skilled PHP dev, UK based, with long term availability, in the short term to join me on a project and ultimately be prepared to take over the project and own it. Remote

[PHP] Re: UK Project Opportunity

2010-02-16 Thread Nathan Rixham
Manuel Lemos wrote: Hello, on 02/16/2010 08:02 PM Nathan Rixham said the following: I need to find a skilled PHP dev, UK based, with long term availability, in the short term to join me on a project and ultimately be prepared to take over the project and own it. Remote contract work w

[PHP] Re: UK Project Opportunity

2010-02-16 Thread Nathan Rixham
Manuel Lemos wrote: Hello, on 02/16/2010 10:29 PM Nathan Rixham said the following: Thank you very much for all you're help and sorry you couldn't bleed some money out of me on this occasion - perhaps you'll manage with you're next spam to the list. Personally I regret that you need

[PHP] Re: UK Project Opportunity

2010-02-16 Thread Nathan Rixham
Manuel Lemos wrote: Hello, on 02/17/2010 12:34 AM Nathan Rixham said the following: in all honesty the following are the sticking point that make it hard for me to decide if I was right in my earlier response: 1: that the sign up to get the class is even part of the equation

Re: [PHP] Re: UK Project Opportunity

2010-02-16 Thread Nathan Rixham
Rene Veerman wrote: On Wed, Feb 17, 2010 at 5:39 AM, Paul M Foster pa...@quillandmouse.com wrote: On Wed, Feb 17, 2010 at 01:52:08AM -0200, Manuel Lemos wrote: The winning designing is viewable here but since the author is still making some changes to fix some issues on pages that were not

Re: [PHP] Re: UK Project Opportunity

2010-02-16 Thread Nathan Rixham
Manuel Lemos wrote: Hello, on 02/17/2010 02:13 AM Shawn McKenzie said the following: PHP framework to speak of. Manuel has authored most of them and many I suppose you meant that I authored many of the classes. I only submitted about 30 out of more than 2600 classes available submitted

Re: [PHP] Re: UK Project Opportunity

2010-02-16 Thread Nathan Rixham
Paul M Foster wrote: On Wed, Feb 17, 2010 at 05:38:36AM +0100, Rene Veerman wrote: snip but if it turns out he's truely leeching on the work of others (by for instance requiring authors to give him (near-)free exclusive rights or something), then i'd have to switch sides, and say that

Re: [PHP] Re: UK Project Opportunity

2010-02-16 Thread Nathan Rixham
Shawn McKenzie wrote: Manuel Lemos wrote: Hello, on 02/17/2010 02:13 AM Shawn McKenzie said the following: PHP framework to speak of. Manuel has authored most of them and many I suppose you meant that I authored many of the classes. I only submitted about 30 out of more than 2600 classes

Re: [PHP] Re: UK Project Opportunity

2010-02-16 Thread Nathan Rixham
Paul M Foster wrote: On Wed, Feb 17, 2010 at 01:52:08AM -0200, Manuel Lemos wrote: snip Having to register to download classes from phpclasses.org is a nuisance. Manuel says this is up to the individual developer. This may be technically true, but Manuel *offers* this as an option.

Re: [PHP] Quick research

2010-02-15 Thread Nathan Rixham
Richard Quadling wrote: On 14 February 2010 20:14, Nathan Rixham nrix...@gmail.com wrote: Hi All, If you have 2 seconds could you answer the following 1 (one) question please http://poll.fm/1lr8t Many thanks in advance if you answer, yes it is PHP related (ultimately) need to get a good

[PHP] UK Project Opportunity

2010-02-15 Thread Nathan Rixham
As a bonus you also get to know that the work you do has positive impacts on real people in many of the worlds poorest nations :) Do email me; off-list; on the above address or nat...@webr3.org if you're interested. Many Regards, Nathan -- PHP General Mailing List (http://www.php.net

Re: [PHP] optional object arguments to a function

2010-02-14 Thread Nathan Rixham
Shawn McKenzie wrote: Michael A. Peters wrote: Rene Veerman wrote: On Sat, Feb 13, 2010 at 9:05 AM, Michael A. Peters mpet...@mac.com wrote: How do I specify a default null object, or otherwise make the argument argument optional? To my knowledge: can't be done. But you can check any

[PHP] Quick research

2010-02-14 Thread Nathan Rixham
Hi All, If you have 2 seconds could you answer the following 1 (one) question please http://poll.fm/1lr8t Many thanks in advance if you answer, yes it is PHP related (ultimately) need to get a good cross section of exposure. Nathan -- PHP General Mailing List (http://www.php.net

[PHP] Re: expression engine

2010-02-12 Thread Nathan Rixham
Sudhakar wrote: hi i am from auckland new zealand, has anyone worked on expression engine cms please advice thanks no but a very high percentage of the good graphic designers I know will use nothing but; all of them really like it. from a programmers point of view, i just don't know

Re: [PHP] PHP Manual problems

2010-02-12 Thread Nathan Rixham
Ashley Sheridan wrote: On Thu, 2010-02-11 at 22:38 -0500, Paul M Foster wrote: On Fri, Feb 12, 2010 at 12:13:11PM +1100, clanc...@cybec.com.au wrote: On Thu, 11 Feb 2010 10:18:18 +, a...@ashleysheridan.co.uk (Ashley Sheridan) wrote: On Thu, 2010-02-11 at 10:16 +1100, Ross McKay wrote:

Re: [PHP] PHP Manual problems

2010-02-10 Thread Nathan Rixham
Michael A. Peters wrote: Robert Cummings wrote: Many government documents have the concept of aside as appearing through the document and contextually near to the information to which the aside relates. The entire sidebar seems a bit gratuitous as an aside. Sure it's aside, but it's not

Re: [PHP] PHP Manual problems

2010-02-10 Thread Nathan Rixham
Michael A. Peters wrote: Nathan Rixham wrote: Michael A. Peters wrote: Robert Cummings wrote: Many government documents have the concept of aside as appearing through the document and contextually near to the information to which the aside relates. The entire sidebar seems a bit gratuitous

Re: [PHP] PHP Manual problems

2010-02-10 Thread Nathan Rixham
Robert Cummings wrote: Michael A. Peters wrote: Nathan Rixham wrote: Michael A. Peters wrote: Robert Cummings wrote: Many government documents have the concept of aside as appearing through the document and contextually near to the information to which the aside relates. The entire sidebar

Re: [PHP] PHP Manual problems

2010-02-10 Thread Nathan Rixham
Robert Cummings wrote: Nathan Rixham wrote: Robert Cummings wrote: Michael A. Peters wrote: Nathan Rixham wrote: Michael A. Peters wrote: It took very little work since I was essentially doing that already. aside is the most logical html 5 layout tag for describing the sidebar in a two

Re: [PHP] PHP Manual problems

2010-02-10 Thread Nathan Rixham
tedd wrote: At 1:38 PM -0500 2/10/10, Robert Cummings wrote: Agreed. Those make sense to demarcate the structure layout of the document... but still, for styling the class makes more sense since it keeps the specificity low and easy to override (especially true for skinnable apps). In my

[PHP] Re: poll: howto do informative error handling without the fatalities

2010-02-09 Thread Nathan Rixham
Rene Veerman wrote: Hi, I'm looking for a strategy to do informative error handling at all levels of my code, yet keep these errors non-fatal as often as possible. error_log - for logging errors throw Exception - for show stoppers try/catch - for when you can handle a potential show stopper

[PHP] Re: Issue with blocked socket stream

2010-02-07 Thread Nathan Rixham
Phani Raju wrote: I am trying to open a blocking stream using fsockopen. I want to write and read XML input/output from a server. After opening the steam I will send a XML request to server using the stream. Once this request is sent, I want to keep listening on the port indefinitely. I

Re: [PHP] stream_select() not working on regular files?

2010-02-04 Thread Nathan Rixham
); // won't get here unless an error i guess.. good luck! Nathan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Magento shopping cart

2010-02-01 Thread Nathan Nobbe
of the popular platforms, im interested in hearing about that as well, lol. -nathan

[PHP] Re: OpenID

2010-02-01 Thread Nathan Rixham
Al wrote: This is a bit off subject, but What is your opinion on OpenID? openID foaf+ssl are the future without a doubt, openid is a step in the right direction; most important factor is giving every person a http identifier (URI); because then you can start linking data together.

Re: [PHP] Magento shopping cart

2010-02-01 Thread Nathan Nobbe
time, especially given the extras he wants. So Nathan, having used it, do you have any tips for a Magento newbie when it comes to integrating it with a custom site? I havent used it yet, but we are considering using it as a second-gen platform at my new place of biz. initial glimpses

Re: [PHP] Do you use a public framework or roll your own?

2010-01-29 Thread Nathan Rixham
Michael A. Peters wrote: Michael A. Peters wrote: Daevid Vincent wrote: I'm not looking to start a holy war here or re-hash the tired debate. I just want some hard cold numbers to look at. Do you use a public framework or roll your own? http://www.rapidpoll.net/8opnt1e And for those

Re: [PHP] how do I use php://memory?

2010-01-29 Thread Nathan Nobbe
the clean(er) HTML. The program itself works fine but with all of the disk access, it runs quite slowly. why read from disk in the first place? http://us3.php.net/manual/en/tidy.parsestring.php -nathan

Re: [PHP] Pointers For Newbies, Reminders For Oldies

2010-01-28 Thread Nathan Rixham
Ford, Mike wrote: -Original Message- From: Rene Veerman [mailto:rene7...@gmail.com] Sent: 27 January 2010 22:46 And if your script needs to pass large ( 5Mb) arrays around to functions, be sure to use passing-by-reference; failing to do so can double your memory requirements,

[PHP] Re: 120 meg of json analyzed by the browser...

2010-01-28 Thread Nathan Rixham
Rene Veerman wrote: Oh, i forgot to mention that firefox takes about a gigabyte of memory after having stalled at 200mb parsed in a 330mb document.. And despite using setTimeout(), firefox frequently freezes (for about 2 to 10 minutes), before updating the decoding-status display again.

[PHP] Re: Good source for sample data?

2010-01-28 Thread Nathan Rixham
Brian Dunning wrote: Hey all - I need a few million sample contact records - name, company, address, email, web, phone, fax. ZIP codes and area codes and street addresses should be correct and properly formatted, but preferably not real people or companies or email addresses. But they'd

Re: [PHP] Multiple Class Inheritance

2010-01-27 Thread Nathan Nobbe
before, but I'm fairly new to class inheritance, and more particularly, the complex inheritance like I describe here. you should study the concept of composition as it pertains to OOP. also, there are several threads in the archives regarding multiple inheritance in PHP. -nathan

[PHP] Re: Question on XML/XSL/PHP/MySQL

2010-01-27 Thread Nathan Rixham
Ryan Park wrote: Hypothetically say that I have MySQL with petabytes of data. I want to use XSL as my template language. But in order to use XSL, I need to make XML filled with petabytes of data. This does not sound elaborate way to use XSL/XML; I would rather use PHP/MySQL/Smarty. Is there a

[PHP] Re: Multiple Class Inheritance

2010-01-27 Thread Nathan Rixham
Ashley Sheridan wrote: Hi All, I know that a class can only inherit from one other single class in PHP, but how would I go about simulating a multiple class inheritance? For example, if I had several small classes that dealt with things like form generation, navbar generation, etc, how

Re: [PHP] Pointers For Newbies, Reminders For Oldies

2010-01-27 Thread Nathan Rixham
Daniel Egeberg wrote: On Wed, Jan 27, 2010 at 18:13, Daniel Brown danbr...@php.net wrote: On Wed, Jan 27, 2010 at 12:08, Daniel Egeberg degeb...@php.net wrote: There is virtually no difference nowadays. It's a long time since anything like that has mattered. Actually, that's not true

Re: [PHP] DirectoryIterator

2010-01-26 Thread Nathan Nobbe
to iterate through at least once? def not on DirectorIterator afaik, and furthermore, i dont think thats supported at the shell / filesystem level even. -nathan

Re: [PHP] DirectoryIterator

2010-01-26 Thread Nathan Nobbe
count() { return $this-_iCount; } ? -nathan

Re: [PHP] DirectoryIterator

2010-01-26 Thread Nathan Nobbe
the DirectoryInterator object. ?php $dirList = new DirectoryIterator(MY_DIR); foreach($dirList as $file ) { echo $file-getFilename() . 'br'; flush(); sleep( 1 ); } ? in that case you would likely need to expose something extra from the C layer. -nathan

Re: [PHP] DirectoryIterator

2010-01-26 Thread Nathan Nobbe
, called from system(), like find . -name * | wc -l (but that would count dirs aswell) right, so on linux, you need to iterate over the filesystem to get a count (unless someone knows a magic command the os / shell provides which returns this info in a single call). -nathan

Re: [PHP] DirectoryIterator

2010-01-26 Thread Nathan Nobbe
On Tue, Jan 26, 2010 at 2:06 PM, Nathan Nobbe quickshif...@gmail.comwrote: On Tue, Jan 26, 2010 at 2:05 PM, Christoph Boget cbo...@hotmail.comwrote: I executed the following test script several times. Each time, in a separate terminal window, I ran touch bob.txt after the script started

[PHP] Re: Recursion issue with Zend_Soap_AutoDiscovery.

2010-01-25 Thread Nathan Rixham
Richard Quadling wrote: Hi. I'm in the process of building a web service which incorporates the ability for the server to inform the client that a particular call has been superseded by another. So, cut down (I've removed all the other details), ... class ServiceDetails {

[PHP] Re: MySQL ID -- what happens when you run out of range?

2010-01-25 Thread Nathan Rixham
Parham Doustdar wrote: Hello there, A friend called me today and was wondering what happens if the ID colomn of an MYSQL database, set to autoinc reaches the int limit. Will it return and begin choosing the ID's that have been deleted, or... what? you change it to bigint before that happens

[PHP] Re: Users, groups, and permissions

2010-01-24 Thread Nathan Rixham
more :) Regards, Nathan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Subversion Ubuntu client

2010-01-23 Thread Nathan Rixham
shiplu wrote: On Sat, Jan 23, 2010 at 10:58 AM, Skip Evans s...@bigskypenguin.com wrote: Hey all, Can anyone recommend a good Subversion client for Ubuntu? If you use an ide, there should be a subversion client for it. its better to manage from ide. eclipse + pdt2 + subversive/svnkit =

Re: [PHP] Cookies sessions

2010-01-23 Thread Nathan Rixham
clanc...@cybec.com.au wrote: On Thu, 21 Jan 2010 22:00:30 +, a...@ashleysheridan.co.uk (Ashley Sheridan) wrote: On Fri, 2010-01-22 at 08:58 +1100, clanc...@cybec.com.au wrote: On Thu, 21 Jan 2010 08:54:44 -0500, tedd.sperl...@gmail.com (tedd) wrote: At 12:15 PM +1100 1/21/10,

[PHP] Re: http vs https

2010-01-23 Thread Nathan Rixham
Ben Miller wrote: Is there a PHP function that will return whether the request was http or https? I have functions that need to cURL other servers - sometimes over SSL, sometimes not, depending whether the function is called from http://www.mydomain.com/script_that_calls_function.php or

Re: [PHP] Close MySQL Result

2010-01-22 Thread Nathan Rixham
to my MS-SQL tables was inefficient in some other way. I may not have proof, but I will be inclined to use this for a performance boost when working with large sets of data. On 1/21/2010 6:45 PM, Nathan Rixham wrote: Shawn McKenzie wrote: Daevid Vincent wrote: -Original

Re: [PHP] Formatting Decimals

2010-01-22 Thread Nathan Rixham
Paul M Foster wrote: On Mon, Jan 11, 2010 at 04:56:03PM -0500, tedd wrote: --Rick: The above described rounding algorithm introduces more bias than simply using PHP's round() function, which always rounds down. IMO, modifying rounding is not worth the effort. The best rounding algorithm

Re: [PHP] Formatting Decimals Further Help

2010-01-22 Thread Nathan Rixham
Rick Dwyer wrote: On Jan 22, 2010, at 4:24 PM, tedd wrote: Hello List. In an earlier post, I received help with a custom function to round decimals off (the custom function provided by Adam Richardson is below). However in my MySQL db, when I have values with only 1 decimal point, I

Re: [PHP] Formatting Decimals Further Help

2010-01-22 Thread Nathan Rixham
Rick Dwyer wrote: On Jan 22, 2010, at 7:30 PM, Nathan Rixham wrote: Thanks Nathan I'll give it a shot. np - here's a more condensed version: function round_to_half_cent( $value ) { $value = ($value*100) + 0.3; $out = number_format( floor($value)/100 , 2 ); return $out

Re: [PHP] Close MySQL Result

2010-01-21 Thread Nathan Rixham
Ashley Sheridan wrote: On Wed, 2010-01-20 at 13:24 -0800, Daevid Vincent wrote: http://www.php.net/manual/en/function.mysql-free-result.php mysql_free_result($myresult); NOTE: mysql_free_result() only needs to be called if you are concerned about how much memory is being used for queries

[PHP] Re: Open Source CMS

2010-01-21 Thread Nathan Rixham
Hendry wrote: Hi, Anyone can share your favorite PHP open source CMS to work with and what's the reason? I'm looking for something that easily extensible. I've googled and found severals but I'm still confused, some from the lists: - Drupal - Tomato CMS - modx - xoops - Symphony

[PHP] linked data

2010-01-21 Thread Nathan Rixham
just a quick scoping mail - Anybody else doing anything linked data oriented, working with a lot of RDF, or using variants of the EAV/CR datamodel in PHP? regards! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Close MySQL Result

2010-01-21 Thread Nathan Rixham
Shawn McKenzie wrote: Daevid Vincent wrote: -Original Message- From: Nathan Rixham [mailto:nrix...@gmail.com] you'll also find a performance upgrade if you load all sql results in to an array and close up the query / free the results before working on them. query

[PHP] Re: How do I remove unused GET parameters from the URL?

2010-01-20 Thread Nathan Rixham
Daevid Vincent wrote: BTW, I want to use GET so that the page can be bookmarked for future searches of the same data (or modified easily with different dates, etc.), so that's why I don't use POST. to do as you say on the clientside you'd probably be best to write a short js script to build

[PHP] Re: IDE - SVN - dev server - live server

2010-01-14 Thread Nathan Rixham
John Corry wrote: I am working on designing an documenting a process for our team to use to manage code updates/changes. What we've been doing has been ghastly: a bunch of developers using dreamweaver's 'check in/out' functions, all using the same FTP login, to FTP files to the production

Re: [PHP] What server am I authenticating to?

2010-01-13 Thread Nathan Rixham
Hansen, Mike wrote: -Original Message- From: daniel.egeb...@gmail.com [mailto:daniel.egeb...@gmail.com] On Behalf Of Daniel Egeberg Sent: Wednesday, January 13, 2010 11:39 AM To: Hansen, Mike Cc: php-general@lists.php.net Subject: Re: [PHP] What server am I authenticating to?

[PHP] Re: POLL: To add the final ? or not...

2010-01-13 Thread Nathan Rixham
Daevid Vincent wrote: I'm having a debate with a co-worker about adding the final ? on a PHP page... To be honest, I am the lead, and I could pull rank and be done with the discussion, however I don't like to be that way. I would rather do the right thing. If my way of thinking is

[PHP] Re: Resin/Quercus

2010-01-07 Thread Nathan Rixham
Mattias Thorslund wrote: Hi, I wonder if anyone has experience with running PHP on the Resin server. Opinions, good, bad? Gotchas? Similar projects? http://www.caucho.com/projects/resin/ Thanks, Mattias Resin is excellent - especially if you need to integrate in with java apps

[PHP] Re: First time PHP user question

2010-01-07 Thread Nathan Rixham
Rick Dwyer wrote: Hello List. I have been playing around with PHP, running a few tutorials and I came across an error message I could not resolve. The tutorial is Generating One Time URL's by Oreilly: http://www.oreillynet.com/pub/a/php/2002/12/05/one_time_URLs.html Basically the PHP

Re: [PHP] How to get a string from C library into PHP via SWIG?

2010-01-05 Thread Nathan Nobbe
and php are communicating in general in your application? -nathan

Re: [PHP] How to get a string from C library into PHP via SWIG?

2010-01-05 Thread Nathan Nobbe
the cli and uses STDIN / STDOUT, if so i think going over the shell is a no-brainer.. -nathan

Re: [PHP] How to get a string from C library into PHP via SWIG?

2010-01-05 Thread Nathan Nobbe
. -nathan

Re: [PHP] efficiency of include()

2009-12-20 Thread Nathan Rixham
Daniel Kolbo wrote: Larry Garfield wrote: On Sunday 20 December 2009 10:45:45 am Daniel Kolbo wrote: Hello PHPers, This is a two part question: 1) Is it faster to include one file with lots of code, or many separate smaller individual files? Assume the one massive file is merely the

[PHP] Re: PHP and XML

2009-11-24 Thread Nathan Rixham
Juan wrote: El día 23 de noviembre de 2009 13:25, Nathan Rixham nrix...@gmail.com escribió: Juan Marcelo Rodríguez Monti wrote: Hi people, I have some doubts about this topic that I'm gonna explain. I have a few sites in flash, and I was requested to write a PHP frontend to send news. I

[PHP] Re: PHP and XML

2009-11-23 Thread Nathan Rixham
Juan Marcelo Rodríguez Monti wrote: Hi people, I have some doubts about this topic that I'm gonna explain. I have a few sites in flash, and I was requested to write a PHP frontend to send news. I have this already done and it works perfect. It's a LAMP App to send and edit news, post video,

[PHP] Re: Extracting a time zone from a latitude longitude

2009-11-21 Thread Nathan Rixham
Haig Davis wrote: Good Morning all, Having a look at the time zone functions in PHP you can enter a time zone city and get it's lat long. Does anybody know how you can run the function in reverse (or know of a similar function) i.e. get the time zone city from the geographic coordinates.

Re: [PHP] Which query is more correct?

2009-11-21 Thread Nathan Rixham
Rick Pasotto wrote: On Fri, Nov 20, 2009 at 04:41:58PM -0600, LAMP wrote: Hi, I need to pull all records from the table Registrants they are NOT in the table ToBeRecleared Registrants.Reg_ID is PK ToBeRecleared.tbrc_Reg_ID is PK Which query is more correct? SELECT r.* FROM registrants

[PHP] Re: PHP sessions, AJAX, authentication and security.

2009-11-21 Thread Nathan Rixham
Angus Mann wrote: Hi all. A question about PHP sessions and their interaction with AJAX. I have a database containing sensitive information and users need to log in to my PHP script and be authenticated before they are granted access. For one of the forms I would like to retrieve

[PHP] Re: need browser auto-form predictable fill-in randomizer addon

2009-11-20 Thread Nathan Rixham
Daevid Vincent wrote: I have a form with probably 100+ elements from input, checkbox, select boxes, textareas, etc. It's extremely tedious to fill these in all the time and submit while developing/testing. Anyone know of a plugin to Firefox (or IE for that matter) that will fill in the

[PHP] Re: need a find/replace command to fix my require_once

2009-11-20 Thread Nathan Rixham
Daevid Vincent wrote: I was reading this: http://pear.php.net/manual/en/standards.including.php and it states: Note: include_once and require_once are statements, not functions. Parentheses should not surround the subject filename. I never knew that. I've always (wrongly) used:

Re: [PHP] Noob question: Making search results clickable.

2009-11-20 Thread Nathan Rixham
Ford, Mike wrote: -Original Message- From: Nisse Engström [mailto:news.nospam.0ixbt...@luden.se] Sent: 19 November 2009 14:54 To: php-general@lists.php.net Subject: Re: [PHP] Noob question: Making search results clickable. On Wed, 18 Nov 2009 10:31:59 -0500, Paul M Foster wrote:

[PHP] Re: DOM append to the top

2009-11-20 Thread Nathan Rixham
Matthew Croud wrote: The XML looks like: Clothes Item.../Item Item.../Item Item.../Item - new items are added here Clothes This is what my code looks like: $y = $dom - getElementsByTagName(item); $dom - documentElement - insertBefore($Xitem,$y); If trying to pass the top

[PHP] Re: How to make the PHP know the real SCRIPT_FILENAME?

2009-11-17 Thread Nathan Rixham
Dong Wang wrote: I am trying to use PHP as backend, which communicate with apache-2.3's mod_proxy_fcgi But I have noticed that the SCRIPT_FILENAME has been changed to proxy:balancer://xx, it cann't be recognized by the remote PHP backend. So the request failed. In my opinion, the

[PHP] Re: How to call DLL in Javascript

2009-11-17 Thread Nathan Rixham
Peter wrote: Hi All, I want to call dll in javascript I tried the following script, but i got the error message 'ActiveXObject is undefined' (Note : i have the feedback.dll in the same path only) HTML HEAD script type='text/javascript' language='javascript' function

Re: [PHP] PHP httpd debug question

2009-11-17 Thread Nathan Rixham
John Beaulaurier -X (jbeaulau - Advanced Network Info at Cisco) wrote: That’s sounds like what I’m looking for. I don’t want to interfere with the current httpd process serving content while running the debug. http://www.google.com/search?q=multiple+apache+instances note: setting only the

[PHP] Re: Need suggestions on PHP frameworks

2009-11-12 Thread Nathan Rixham
Dhanushka Samarakoon wrote: Hi, I need to select a PHP framework for a small project about 20-25 pages (but expected to grow in the future). I was looking at the comparison chart at http://www.phpframeworks.com/. After browsing through some forums seems like CodeIgniter is the popular

[PHP] Re: Form Validation filter - Regex Q

2009-11-10 Thread Nathan Rixham
Haig Davis wrote: alone work fine as does the foreach loop the only issue I have is the IF statement comparing $key to expected varieable names. if($key != ($customerServiceEmail) || ($billingEmail) || multiple points here.. 1: is the key name held in a php variable called

[PHP] Re: Die Page, Die! (Was: Preview button to show PDF without submittingpost data?)

2009-11-08 Thread Nathan Rixham
Dave M G wrote: Ashley, Thank you for responding. I think you do, or where else would you show the PDF? Unless you force the PDF to download when the user clicks the preview button, you are left with the default option of the users browser, which will most usually be to display the PDF

<    1   2   3   4   5   6   7   8   9   10   >