Re: [PHP] More than one values returned?

2008-02-19 Thread Steve Edberg
return array(1,2); } list($a,$b) = test(); works as above. Works fine with complex arrays as well: function test() { return array(1,array('a','b')); } list($a,$b) = test(); steve -- +--- my people are the people of the dess

[PHP] Storing user ID in a cookie security precautions

2008-02-25 Thread Steve Finkelstein
Hi folks, I just completed my first reading of Advanced PHP Programming by George Schlossnagle and was very impressed and thankful for the wealth of information with examples provided by George. With that said, there is a chapter dedicated to Authentication using client-side cookies and encryptin

[PHP] Anyone jump from Studio 5.5.x -> Zend Eclipse?

2008-03-01 Thread Steve Finkelstein
Hi all, I've tried googling around to find some blogs with decent information on whether Zend Eclipse is mature enough to make the jump over from 5.5.x just yet. Admittedly, I've dropped Zend Studio as of late and been writing all of my code in TextMate -- but at the end of the day when a project

[PHP] Weird Zend IDE Issue

2008-03-02 Thread Steve Finkelstein
Hi all, I know this isn't a forum for Zend IDE, but since there's probably a decent population here using it, I figured I'd ask away. I'm using 5.5.1 Professional on Mac OSX 10.5.2. My issue here is that all left brackets, (eg: [ ) are not showing up in the code editor. I have a screenshot of it

Re: [PHP] Weird Zend IDE Issue

2008-03-03 Thread Steve Finkelstein
]> wrote: > Steve Finkelstein schreef: > > Hi all, > > > > I know this isn't a forum for Zend IDE, but since there's probably a > > decent population here using it, I figured I'd ask away. > > > > I'm using 5.5.1 Professional on Mac OSX

Re: [PHP] Weird Zend IDE Issue

2008-03-03 Thread Steve Finkelstein
l Vogel <[EMAIL PROTECTED]> wrote: > Richard Lynch schrieb: > > > On Sun, March 2, 2008 11:07 pm, Steve Finkelstein wrote: > > > >> Hi all, > >> > >> I know this isn't a forum for Zend IDE, but since there's probably a > >>

Re: [PHP] Weird Zend IDE Issue

2008-03-03 Thread Steve Finkelstein
It required creating my own 'Custom Profile' which allowed me to manipulate the Font and/or Size. As soon as I modified those, it worked fine. Thanks for the assistance all. Pain in the butt issue! /sf On 3/3/08, Sancar Saran <[EMAIL PROTECTED]> wrote: > On Monday 03 March

[PHP] PHP CLI neat errors!

2008-03-12 Thread Steve Finkelstein
So, I use a Mac to develop with. I used to host Zend Core on my box, until I switched to the MAMP PRO framework. Unfortunately somewhere in between, this lovely issue started occuring with my CLI binary of PHP: foo:~ sf$ php -l dyld: NSLinkModule() error dyld: Symbol not found: _zend_extensions

Re: [PHP] avoid calling php script

2008-03-12 Thread Steve Edberg
as above is probably the safest. If it's not set properly, redirect the user, eg: if (!isset($_GET['calledby']) || $_GET['calledby'] != 'swf') { header('Location: http://example.com/thecorrectpage.html'); exit(); } ... - s

[PHP] How to jump to line number in large file

2008-04-04 Thread Steve McGill
ight direction? Editplus opens up the 100Mb file in a couple of seconds and can then jump to a line number instantaneously, whereas my code takes a couple of minutes to loop through the file. I'm assuming this isn't the difference between PHP & C but rather that I'm doing some

Re: [PHP] How to jump to line number in large file

2008-04-05 Thread Steve McGill
e to. Perhaps I should test how quick the fgets() and ftell() method is because at least it loads in one line at a time. Does anybody know any other ways to go about the problem? Many thanks, Steve ""Greg Bowser"" <[EMAIL PROTECTED]> wrote in message news:[EMAI

Re: [PHP] How to jump to line number in large file

2008-04-05 Thread Steve McGill
sing a buffer system, (reading in 1Mb of the text file at a time and then looping through the string in memory) made the script execute in 36 seconds. Huge improvement, but... - Porting the code to C++, doing a shell_exec and reading the results back in to PHP, took less than 2 seconds. As fgetc(

Re: [PHP] How to jump to line number in large file

2008-04-05 Thread Steve McGill
So the only variation on a theme that I didn't test is the one that performs the best by an order of magnitude... nice. Many thanks for your time everyone. "Robert Cummings" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > On Sat, 2008-04-05 at 19:0

Re: [PHP] Quarters

2008-04-11 Thread Steve Holmes
Works great in Safari. Except I can't win :-).Steve On Fri, Apr 11, 2008 at 9:49 AM, tedd <[EMAIL PROTECTED]> wrote: > Hi gang: > > Check out my new game: > > http://webbytedd.com/quarters/ > > What do you think? > > Cheers, > > tedd > > PS:

[PHP] Most viewed?

2008-04-15 Thread Steve Marquez
Greetings, Can any of you point me in the right direction on how to use PHP to create a most viewed or most clicked articles list? Can it be done with PHP? Thank you so much, Steve Marquez [EMAIL PROTECTED]

Re: [PHP] Database abstraction?

2008-04-16 Thread Steve Holmes
Assuming a recent release of MySQL: open the schema information_schema then select TABLE_NAME, COLUMN_NAME from COLUMNS where TABLE_NAME = '$table'; Steve On Wed, Apr 16, 2008 at 10:55 AM, Richard Heyes <[EMAIL PROTECTED]> wrote: > I'm back with yet another question..

[PHP] need "pop-up" in progress alert

2008-04-18 Thread Steve Holmes
, I guess, but if this is the straw that gets me into pear, so be it. So if someone could point me in the right direction I'd really appreciate it. Thanks, Steve Holmes Purdue University

Re: [PHP] need "pop-up" in progress alert

2008-04-18 Thread Steve Holmes
Thanks (to both). Ajax is yet another thing I don't know anything about. :-). Time to do some studyin' up I guess.If there are any canned ajax solutions, I'd like to hear about them. Steve. On Fri, Apr 18, 2008 at 11:04 AM, James Dempster <[EMAIL PROTECTED]> wrote: > A

Re: [PHP] need "pop-up" in progress alert

2008-04-18 Thread Steve Holmes
On Fri, Apr 18, 2008 at 11:39 AM, Eric Butera <[EMAIL PROTECTED]> wrote: > On Fri, Apr 18, 2008 at 10:42 AM, Steve Holmes <[EMAIL PROTECTED]> wrote: > > Greetings, I'm relatively new to PHP and I've been lurking for a while > on > > the list, but now

Re: [PHP] need "pop-up" in progress alert

2008-04-18 Thread Steve Holmes
p://www.bram.us/projects/js_bramus/jsprogressbarhandler/ I know this isn't a pop-up but I can make it work. As long as the user knows something is happening (and I protect them from their own stupidity :-) I'll be fine. Thanks for all the quick help! Steve

[PHP] Large XML manipulation within PHP

2008-04-23 Thread Steve Gula
ng a large amount of XML data? Thanks. -- --Steve Gula (this email address is used for list communications only, direct contact at this email address is not guaranteed to be read)

Re: [PHP] Large XML manipulation within PHP

2008-04-23 Thread Steve Gula
. On Wed, Apr 23, 2008 at 4:36 PM, Bastien Koert <[EMAIL PROTECTED]> wrote: > > > On 4/23/08, Steve Gula <[EMAIL PROTECTED]> wrote: > > > > I work for a company that has chosen to use XML (Software AG Tamino XML > > database) as its storage system for an enter

[PHP] Using SVN w/ Zend Studio for Eclipse

2008-05-14 Thread Steve Finkelstein
Hey all, Apologies ahead of time if this isn't the appropriate forum for my inquiry. I'm evaluating Zend Studio for Eclipse and it's certainly making some features that I'd hope would be trivial, extremely onerous. I'm simply trying to take an existing project which I started in TextMate and impo

Re: [PHP] help with multi dimensional arrays

2007-05-23 Thread Steve Finkelstein
Might I suggest using an IDE to develop your code in. It would be able to spot simple oversights such as syntax errors. I personally use Zend Studio, however if you aren't looking to invest in a license, there are plenty of open source solutions out there. Cheers, - sf James Lockie wrote: > Paul

[PHP] Web Application Design Literature

2007-05-28 Thread Steve Finkelstein
Hello - I'm looking for recommendations on literature which will give me ideas on best practices for design and implementation of web applications, with if possible, PHP as its core reference language. Syntax has never been the challenge for me, like for most, it's always been the most practical

Re: [PHP] Single Sign On

2007-06-04 Thread Steve Edberg
/ - useful. steve -- +--- my people are the people of the dessert, ---+ | Steve Edberghttp://pgfsun.ucdavis.edu/ | | UC Davis Genome Center[EMAIL PROTECTED] | | Bioinformatics programming/database/sysadmin

[PHP] Strings

2007-06-05 Thread Steve Marquez
The following code works: However, this does not: ²; } ?> It seems that if I add a string, rather than just the variable, then does not work. I am getting an unexpected T_IS_EQUAL error. -- Thanks, Steve Marquez

Re: [PHP] Strings

2007-06-05 Thread Pastor Steve
.) > $image = ""; > if ($image == NULL) { > print "False"; > } else { > > ?> > > > } > ?> It works if $image is not NULL. However, if it is empty, then it gives me an error. I am very much so a novice and appreciate your patience. Thank

Re: [PHP] Strings

2007-06-05 Thread Steve Marquez
I got it to work! I just had to place the HTML elements outside of the PHP code. Thanks for your help. -- Steve Marquez on 6/5/07 2:02 PM Jochem Maas ([EMAIL PROTECTED]) wrote: > Robert Cummings wrote: >> > On Tue, 2007-06-05 at 19:57 +0200, Jochem Maas wrote: >>> >>

[PHP] Image Information

2007-06-06 Thread Steve Marquez
Greetings, I am trying to get information (width, height, file size) from an image before it is uploaded. Is there a way to do that? Thank you, -- Steve Marquez

[PHP] Patterns

2007-06-07 Thread Steve Marquez
way to do this? Thanks, -- Steve M.

[PHP] PHP tailing a log

2007-06-07 Thread Steve Finkelstein
Hi all, Does PHP happen to have something similar to Perl's File::Tail -> http://search.cpan.org/~mgrabnar/File-Tail-0.99.3/Tail.pm? I'm looking to be able to tail a file on the server side and somehow figure out how to use AJAX to keep the file consistently updated through to the client. Any su

Re: [PHP] Swear filter ideas

2007-06-28 Thread Steve Edberg
D] think you [EMAIL PROTECTED] are ??'; } - st&[EMAIL PROTECTED] -- +--- my people are the people of the dessert, ---+ | Steve Edberghttp://pgfsun.ucdavis.edu/ | | UC Davis Genome Center[EMA

RE: [PHP] Re: Swear filter ideas

2007-06-28 Thread Steve Edberg
urse >:) So really, words are only offensive to those who somehow infer a secondary meaning. What that inference is, I've yet to understand. I can say the baby pooped, had a bowel movement, or dirtied its diaper, but as soon as you say the baby shit its diaper... people give you a funny look.

[PHP] Suggestion re: PHP Brain Teasers

2007-07-05 Thread Steve Edberg
y leads to obfuscation. And one should eschew obfuscation. - steve, eschewing away... -- +--- my people are the people of the dessert, ---+ | Steve Edberghttp://pgfsun.ucdavis.edu/ | | UC Davis Genome Center[EMAIL

Re: [PHP] Suggestion re: PHP Brain Teasers

2007-07-05 Thread Steve Edberg
At 7:37 PM -0400 7/5/07, Robert Cummings wrote: On Thu, 2007-07-05 at 16:27 -0700, Steve Edberg wrote: Proposal - Perhaps we could separate Brain Teasers, Obfuscated PHP challenges, and what-have-you to a separate mailing list, say php-fun (php-phun? PHPhun?)? Maybe you could also include

[PHP] PHP5 objects access/instantiation model

2007-07-11 Thread Steve Perkins
Hi, new to PHP5 and I have a question about the object model. I want to be able to create a class which is allows abstraction from specifics. So for one example, imagine a generic database connection wrapper which can have multiple drivers depending on the database used. Some of the functionalit

[PHP] PHP5 objects access/instantiation model (correction)

2007-07-11 Thread Steve Perkins
OK, so that came out fairly illegible. Try again: Hi, new to PHP5 (and the forums evidently !) and I have a question about the object model. I want to be able to create a class which is allows abstraction from specifics. So for one example, imagine a generic database connection wrapper which can

RE: [PHP] PHP5 objects access/instantiation model (correction)

2007-07-11 Thread Steve Perkins
From: Richard Lynch [mailto:[EMAIL PROTECTED] Sent: 11 July 2007 21:29 To: Steve Perkins Cc: php-general@lists.php.net Subject: Re: [PHP] PHP5 objects access/instantiation model (correction) You probably ought to have: class mysql_driver extends generic_driver { } Seems like that would be the

RE: [PHP] mail function from and reply to address problem

2007-07-12 Thread Steve Perkins
PHP, or point the finger ! I suspect eliminate but you never know.. That's where I think I'd start anyway. Send uz an update when you have some answers. Steve -Original Message- From: Tanner Postert [mailto:[EMAIL PROTECTED] Sent: 13 July 2007 00:33 To: php-general@lis

FW: [PHP] SMS questions

2007-07-13 Thread Steve Perkins
M. Nixon Sent: 13 July 2007 09:17 To: Steve Perkins [mailto:[EMAIL PROTECTED] Subject: FW: [PHP] SMS questions Hi Steve Hope you're doing fine. It is possible. In short, you have seen how a SMS message is sent using a operators Name label i.e. the Messages says who it's from e.g. TE

RE: [PHP] SMS questions

2007-07-15 Thread Steve Perkins
Sorry, www.textit.biz Cheers -Original Message- From: Dan [mailto:[EMAIL PROTECTED] Sent: 13 July 2007 17:52 To: php-general@lists.php.net Subject: Re: [PHP] SMS questions Might want to retry that link, it's broken. - Dan ""Steve Perkins"" <[EMAIL PROTE

RE: [PHP] magic quotes

2007-07-17 Thread Steve Perkins
without having to worry about different .htaccess files for each. Ta Steve -Original Message- From: Richard Heyes [mailto:[EMAIL PROTECTED] Sent: 17 July 2007 12:25 To: Phil Princely Cc: php-general@lists.php.net Subject: Re: [PHP] magic quotes > What do people on this list usually do w

[PHP] Symfony versus CakePHP?

2007-07-20 Thread Steve Finkelstein
All, I'm terribly sorry if this is a redundant inquiry. I'm a rather inexperienced developer who's catching on quickly, and looking for a framework to build out a project I've been assigned. I'm more of a read a book and try things out type of learner. My question to those with more experien

[PHP] PHP not working after Mac 10.3.9 install

2007-07-23 Thread Steve Marquez
Greetings, I am a very novice user of PHP. I have run PHP 4 on my Powerbook for about three years. When I installed Mac OS 10.3.9, PHP does not work. I forgot how to get it running again. Can anyone help me with this? Thanks, -- Steve Marquez

[PHP] Strategy when working with designer(s)?

2007-07-23 Thread Steve Finkelstein
Hi all, This is more of a conceptual based inquiry. I'm currently working on some projects which require me to build system 'X' prior to any (X)HTML/CSS/graphics are available to me. A lot of the time, I just garble up default tables/forms/images to replace what the designer will be ultimatel

[PHP] XHTML/CSS templates for developers

2007-08-04 Thread Steve Finkelstein
Hi all, I was curious if anyone could provide some insight on tools which allow developers who strictly focus on server-side programming and not UI, to quickly implement XHTML/HTML templates with proper div placement. Drag and drop would be preferable. I'm currently working on a project which no

Re: [PHP] Rejecting File Upload

2007-08-04 Thread Steve Edberg
P can refuse to accept files larger than a specified size, which isn't exactly what you're asking: http://us.php.net/manual/en/features.file-upload.php For more information, documentation sets in multiple languages are available here: http://www.php.net

Re: [PHP] Not quite OT but maybe close... Help with MySQL

2007-08-08 Thread Steve Edberg
'it just imports the first row of my file' - as in, what does your LOAD DATA statement look like? Were there any warnings/errors generated? You were doing a LOAD DATA on a tab- or comma-delimited file, right? MySQL can't eat raw Excel files. steve -- +--

[PHP] include_path issue

2007-08-08 Thread Steve Finkelstein
Hi all, I have rudimentary application which has an index.php that looks like this: ini_set( 'display_errors', true ); require_once'include/Model.php'; Immediately after that include/Model.php is processed, Model.php consists of this: require_once 'DB/DataObject.php'; Thi

[PHP] Sorting files in a directory

2007-08-08 Thread Steve Marquez
sort ($file_array); foreach($file_array as $key => $value) { echo "".$value.""; } } } echo ""; // close directory closedir($dh); } } ?> -- Steve Marquez

[PHP] Code Igniter for 'novices' ?

2007-08-09 Thread Steve Finkelstein
Hi all, This isn't a 'which framework is better than the other' question. I'm a novice developer and I'm looking to conform to an MVC model for my applications. I was wondering if anyone would be kind enough and has used code igniter, to respond to me and let me know their thoughts on it, and if i

[PHP] regular expression to extract from the middle of a string

2006-07-14 Thread Steve Turnbull
wing comma - in this case 'emailadmin'. Question(s); is this possible via a regular expression? does php have a better way of doing this? Some pointers would be greatly appreciated. Once I have working, I will be creating a function which will cater for this and will post to this list if

Re: [PHP] PHP Frameworks - Opinion

2006-08-01 Thread Steve Turnbull
so, for about $80 (off the top of my head), there is a great course run by PHP Architect on getting the most from it - it really is a powerful tool. Downside is it's more costly than others, but well worth it in my opinion. Just my thoughts... Cheers Steve -- Steve Turnbull Digital Con

Re: [PHP] function does not exist

2006-08-25 Thread Steve Edberg
in that case you would get a different error ('nonexistent method call' or something like that). steve -- +--- my people are the people of the dessert, ---+ | Steve Edberghttp://pgfsun.ucdavis.edu/ | | UC Davis Genome Center

[PHP] GD2

2006-09-07 Thread Steve Marquez
an in-house machine for future use and we were wondering if anyone has run into this issue before. Could it be that we need to create a module in the php.ini file? I am kind of new to the back-end of PHP. You could probably tell. I appreciate any help. Thanks, Steve Marquez

[PHP] Database.table issue

2006-09-07 Thread Steve Marquez
¹ and the Table Œcategories¹ exists. I have been able to use the shell to insert info into the table and it works fine, even on the in-house server. Does anyone know what this could be? Thanks, -- Steve Marquez

Re: [PHP] chown(), chgrp()

2006-09-19 Thread Steve Edberg
t to chown/chgrp it. If the chown()/chgrp() returns false, you probably don't have permission. steve Rahul S. Johari Supervisor, Internet & Administration Informed Marketing Services Inc. 500 Federal Street, Suite 201 Troy NY 12180 Tel: (518) 687-6700 x154 Fax: (518) 687

[PHP] Various errors being generated from an apache/php combo

2006-09-27 Thread Steve Walker
o below, let me know if you require httpd.conf Kind regards, Steve - PHP Version 4.3.11 System Linux s15223417.onlinehome-server.info 2.6.16-rc6-060427a #1 SMP Thu Apr 27 10:38:19 CEST 2006 i686 Build Date Nov 8 2005 06:

RE: [PHP] Re: Various errors being generated from an apache/php combo

2006-09-27 Thread Steve Walker
Thanks Kae and Rick for your replies. One of things I should have mentioned is that all these sites have been migrated from another box on which they were working fine, which is why I've been questioning the box itself rather than the cms's. Kind regards, Steve. > -Ori

RE: [PHP] Re: Various errors being generated from an apache/php combo

2006-09-27 Thread Steve Walker
even more difficult to pinpoint. Steve. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 27, 2006 15:28 > To: Steve Walker > Subject: RE: [PHP] Re: Various errors being generated from an > apache/php combo >

RE: [PHP] Re: Various errors being generated from an apache/php combo

2006-09-27 Thread Steve Walker
> are you using an opcode cache? Yes, we have eaccelerator running. > > > > Steve. > > > >> -Original Message- > >> From: [EMAIL PROTECTED] > >> [mailto:[EMAIL PROTECTED] > >> Sent: Wednesday, September 27, 2006 15:28 > &g

RE: [PHP] Re: Various errors being generated from an apache/php combo

2006-09-27 Thread Steve Walker
Thanks Jochem. We tested with both modules switched off and it made no difference. I was suspicious about mod_security, but again it doesn't seem to causing the problem. Steve. > -Original Message- > From: Jochem Maas [mailto:[EMAIL PROTECTED] > Sent: Wednesday, Septemb

Re: [PHP] Interchange.

2006-10-15 Thread Steve Edberg
-- my people are the people of the dessert, ---+ | Steve Edberghttp://pgfsun.ucdavis.edu/ | | UC Davis Genome Center[EMAIL PROTECTED] | | Bioinformatics programming/database/sysadmin (530)754-9127 | +-

[PHP] Job postings?

2006-10-24 Thread Steve Lane
with specifically PHP skills? Thanks -- -- Steve Lane Vice President Soliant Consulting, Inc. (610) 788-2124 (V) (847) 890-6029 (F) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Job postings?

2006-10-24 Thread Steve Lane
Thanks Jochem. If I can't find a junior PHP dev, it sounds as though I'll at least be able to improve my beer technique :-) -- SGL On 10/24/06 10:02 AM, "Jochem Maas" <[EMAIL PROTECTED]> wrote: > Steve Lane wrote: >> Greetings all: >> >> This is

Re: [PHP] recommendations for good breacrumbs script

2006-03-11 Thread Steve Edberg
s the resulting words. Of course, you could remove/alter that functionality if you want. Hope that email client linewraps don't muck it up too badly... steve function path_to_crumbtrail($TopLevel='', $Separator=' | ', $LinkAttr='', $IgnoreName='

Re: [PHP] Printing library in PHP ?

2006-03-14 Thread Steve Brown
> I am currently migrating an application originally written with Delphi to > PHP. Everything is going fine except the printing of the reports that does > not produce the same visual result (i.e does not look the same or has some > aligmment issues). We generate all of our printed reports using F

[PHP] PHP Developer/Architect needed

2006-05-26 Thread Steve Turnbull
we are looking for a contractor in the Yorkshire/Humber area of the UK, but we are not ruling out further afield. If you are interested, please contact me - details below, and I will provide a more detailed requirement... Regards Steve -- Steve Turnbull Digital Content Developer YHGfL

[PHP] ldap_connect allways returns true even if logically it shouldn't?

2006-06-19 Thread Steve Turnbull
can see, I am expecting a return value of true only if the ldap_connect makes a successful connection. However, even if I pass values which should make a false, it gives a true. What am I missing out on here - could any one tell me why true is always returned? Cheers Steve -- Steve Turnbull Di

Re: [PHP] Re: Military Service WAS [PHP] Capitalization of variable

2008-06-19 Thread Steve Edberg
ould be strictly about PHP issues. So I have to agree with Per here. Perhaps a PHP-Personal, PHP-Fun or PHP-OT list could be set up for such discussions; heck, I might even subscribe to it. steve -- +--- my people are the people of the dessert, -------

[PHP] Communicated-Key/Token for SOAP Authentication

2008-06-22 Thread Steve Finkelstein
Hi all, I'm working on a relatively straight forward Web API that'll have a SOAP presence. The most secure way of going about doing authentication would be undoubtedly client-certificate authentication. I have been able to implement such a service straight forward as there is plenty of documenta

[PHP] Variable not showing up.

2008-07-02 Thread Steve Marquez
YSQL_ASSOC)) { extract ( $line ); ?> $linkspage"; ?>"> '; } ?> -- Steve Marquez Marquez Design e-mail: [EMAIL PROTECTED] web: http://www.marquez-design.com

Re: [PHP] php not reading file properly

2008-08-20 Thread Steve Holmes
the web server is running under. I.e. if the webserver is running as user Nobody, make sure the file can be read by Nobody (you know what I mean). Steve

Re: [PHP] Robert Cummings

2008-09-30 Thread Steve Holmes
On Tue, Sep 30, 2008 at 2:12 PM, Daniel Brown <[EMAIL PROTECTED]> wrote: >All: > >What was pointed as a passing mention in one thread I thought was > worth note in a thread of its own. As quoted by Rob: > > > BTW, while we're off topic... my wife delivered our third child (second > > boy)

[PHP] PHP Auth

2008-10-30 Thread Steve Marquez
Greetings, What is the best way to create authentication for MySQL info displayed on PHP pages. Thanks, -- Steve Marquez Marquez Design e-mail: [EMAIL PROTECTED] web: http://www.marquez-design.com phone: 479-648-0325

Re: [PHP] PHP Auth

2008-10-30 Thread Steve Marquez
without having to re-authenticate during that session. Does this make sense? -- Steve Marquez Marquez Design e-mail: [EMAIL PROTECTED] web: http://www.marquez-design.com phone: 479-648-0325 On Oct 30, 2008, at 3:38 PM, Jay Blanchard wrote: [snip] What is the best way to create authentication

[PHP] Re: sql query question

2004-02-12 Thread Steve Solomon
select * from table where locate("new",descript)>0 or locate("car",descript)>0; "Tony" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] hi if i have new car and i want to search each word in description can i do SELECT * FROM table WHERE descript = "new" OR descript ="car"?? any hel

[PHP] XSLT in php v5 beta 4

2004-02-19 Thread Steve Dieke
s the following: Fedora Core 1 php - version 5 beta 4 apache - 2.0.48 Anyone have any ideas? I have looked at the articles on php.net and didn't see anything that I thought would help. Thanks, Steve -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: XSLT in php v5 beta 4

2004-02-20 Thread Steve Dieke
bxml2 2.6.6 and libxslt 1.1.3 both of which reside in the location mentioned in the configure line above. Thanks again for you response I really appreciate it. I will give the DOM XSLT a try this weekend. Steve "Lucian Cozma" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROT

[PHP] making 1 pdf file from 2

2004-02-25 Thread Steve Buehler
lib. Thanks in Advance Steve -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] [Q] PHP code embedded in html files - What happens?

2004-03-14 Thread Steve Edberg
php3 .php to this AddType application/x-httpd-php3 .php .html See http://www.php.net/manual/en/install.apache.php for more info. steve -- +--- my people are the people of the dessert, ---+ | Steve Edberg [EMAIL PROTECTED] | | Univer

[PHP] Quote for Job

2004-04-01 Thread Steve Buehler
to, Squirrelmail or many of the other email clients out there would work just fine. Thank You Steve Buehler -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] You Win - 0

2004-04-01 Thread Steve Timmons
Hello, This is Steve from Warp2Casino. You visited one of our partner casino sites last year, so I wanted to make you aware of our newest launch, Warp2Casino. If you want to come check it out, I'll give you $25 to play with in a real money account. You don't have to make any purch

[PHP] cURL upload meter

2004-04-05 Thread Steve Murphy
Can cURL be used to create an HTTP or FTP upload meter? Steve

RE: [PHP] File upload progress

2004-04-06 Thread Steve Murphy
like with downloads. Does anyone else think its time to rewrite all the protocols? Sorry for the rant, stuff like this bugs the hell out of me. Steve -Original Message- From: Jeff McKeon [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 06, 2004 4:40 PM To: [EMAIL PROTECTED] Subject

RE: [PHP] File upload progress

2004-04-06 Thread Steve Murphy
this function in 4.4. Steve -Original Message- From: Jeff McKeon [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 06, 2004 5:18 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: [PHP] File upload progress > > I posted about this the other day. I was directed to look at > m

RE: [PHP] File upload progress

2004-04-06 Thread Steve Murphy
think about it. My proposal to include this at the HTTP spec level would solve all the problems presented. Then we could get on with fun sh*t like skinning the meter and making Apache 2 and PHP 5 thread safe so we can all upgrade. Steve -Original Message- From: Curt Zirzow [mailto:[

[PHP] Most efficient way of fetching 1,000 records from MySQL ?

2004-10-25 Thread Steve McGill
se, if it gets too long? Or am I missing a more efficient 3rd / 4th option? Many thanks in advance for your help. Steve McGill -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Most efficient way of fetching 1,000 records from MySQL ?

2004-10-25 Thread Steve McGill
ry. > > Use this aproach: > > $users = > sql('select * from users where userID IN ('. implode(', ',$users) .')'); That is precisely what I wanted, many thanks for your help guys. Steve -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP + Javascript, immediate database update

2004-10-27 Thread Steve McGill
essed back, forward, or entered in another URL). Can anybody point me in the right direction? Many thanks, Steve -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] SOAP w/PHP 4

2004-10-29 Thread Steve Brown
> Does PHP 4 support SOAP, or does something have to be added to it?? We use the NuSOAP package in our SOAP apps: http://dietrich.ganx4.com/nusoap/index.php We had to use the latest CVS version of NuSOAP to get all of our apps working correctly, NOT the current "Stable" version however. -- PHP

[PHP] Command Line Script

2004-10-29 Thread Steve Douville
sword when it's prompted? Hope this makes sense. TIA, Steve

Re: [PHP] Command Line Script

2004-10-30 Thread Steve Douville
> > If you want to stick with PHP, you're better off using an ssh key, so that > you're not prompted for the password. > Ahh, okay thanks. If anyone can point me to some useful docs, I'd appreciate it. I've been looking on google but not really sure what's

[PHP] File Handing Windows / Linux

2004-11-14 Thread Steve Vernon
lines are: @ $handle = opendir("c:/websites/mywebsite/extra/photos/".$_GET['page']."/"); @ $handle = opendir("/home/mywebsite/public_html/extra/photos/".$_GET['page']."/"); Had a search on google, but not really sure what to lo

Re: [PHP] PHP info: MySQL client API version: 3.23?

2004-11-24 Thread Steve Buehler
unning. My mysql, mysql-server and mysql-devel are all 3.23.58. Only my php-mysql module is 4.3.2-14 Steve -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP info: MySQL client API version: 3.23?

2004-11-24 Thread Steve Buehler
At 10:59 AM 11/24/2004, you wrote: On Wed, 24 Nov 2004 10:37:19 -0600, Steve Buehler <[EMAIL PROTECTED]> wrote: > At 07:38 AM 11/24/2004, you wrote: > > >In the phpinfo() output, the MySQL client API version is shown as 3.23.49. > >Shouldn't this be upgraded to 4.

Re: [PHP] php editor or php IDE for linux with autocompletion

2004-11-30 Thread Steve Brown
> > Does anyboy know about a linux based php editor with autocompletion? Must > > be open source free software (free as in speech, not beer). I use the PHPEclipse add on for the Eclipse IDE. Eclipse provides a fantastic suite of tools for coding in almost any language. The PHPEclipse add-ons pro

[PHP] Snyc Outlook Calendar with Website

2004-12-05 Thread Steve Vernon
ere a good example already made? Don't mind making this, or even trying parts of it, if I know this will work! Thanks! Steve -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Loops

2004-12-14 Thread Steve Marquez
do this. I have very little knowledge of PHP but am learning. Let me know if more information is needed. Thank you for any help. -- Steve Marquez [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

<    10   11   12   13   14   15   16   17   >