Re: [PHP] Hey, I have a full time PHP developer position in Chicago!

2013-09-10 Thread Matt Giddings
Sorry I can't relocate at the time. Thanks for sending me the notification though. : ) Matt On Tue, Sep 10, 2013 at 10:41 AM, Steve Gadlin wrote: > Howdy. My name is Steve, and I run the web department for Weigel > Broadcasting in Chicago. We're looking for a senior-level

[PHP] Re: mcrypt_create_iv - why so slow?

2013-05-31 Thread Matt Graham
y doing "time dd if=/dev/random of=/dev/null bs=16k count=5" and repeating the same command with /dev/urandom. 1.312 seconds vs. 0.019 seconds here. Not much to do with PHP, though, just the way the Linux kernel people did things. /dev/urandom is probably the way to go for most normal r

Re: [PHP] Introduction ... !

2013-03-02 Thread Matt Giddings
I've been on this list since the early 2000's. I used to participate a lot back then but then took up a non-php related job and I stopped paying attention to the list. I've been working again with php for the past 4.5 years but choose to just monitor the list and haven't participated much. Perha

[PHP] Re: Creating an Advanced Form

2012-11-02 Thread Matt Graham
putting another space at the end of each substring would help, but that's the first thing I'd try. (I'm sure other people will say "OMGPANIC procedural code! OH NOES, using mysql_* functions! Unclean! Unclean! AH!", so be prepared for that too) -- Matt G / D

Re: [PHP] redefine a define ...

2012-08-25 Thread Matt Neimeyer
)) { define("SOME_CONSTANT","Generic Value"); } This should avoid any redefinition and thus the notices. Matt On Sat, Aug 25, 2012 at 3:07 PM, Matijn Woudt wrote: > Op 25 aug. 2012 21:03 schreef "Adam Richardson" het > volgende: >> >> On Sat, Au

Re: [PHP] File moving hell on Windows

2012-07-31 Thread Matt Graham
;); // equivalent of "umount //machine/share2" However, there may be a better/easier/more elegant way to do these things. Not sure; our PHP-running machines are all running Linux. -- Matt G / Dances With Crows The Crow202 Blog: http://crow202.org/wordpress/ There is no Darkness in Et

Re: [PHP] Re: http_referer. what's wrong with that?

2012-01-11 Thread Matt Neimeyer
While perhaps unlikely in "common users" it is also possible to prevent your browser from sending the referrer. IIRC, the referrer can also get mangled when passing through HTTPS (although I don't remember on which side, HTTP->HTTPS or HTTPS->HTTP or both) Matt On Thu, Ja

[PHP] re: More Error Reporting Problems

2011-12-30 Thread Matt Graham
group if necessary. /var/log is always owned by root and is 755, meaning that the webserver user doesn't have permission to create that file if it doesn't exist. -- Matt G / Dances With Crows The Crow202 Blog: http://crow202.org/wordpress/ There is no Darkness in Eternity/But only

Re: [PHP] DOS CLI?

2011-12-08 Thread Matt Neimeyer
On Thu, Dec 8, 2011 at 7:16 AM, Richard Quadling wrote: > On 2 December 2011 21:00, Matt Neimeyer wrote: >> Is there (or is there a way to compile) a DOS CLI version of a fairly >> recent version of PHP? I have not been able to find one using the >> powers of Google. &g

[PHP] DOS CLI?

2011-12-02 Thread Matt Neimeyer
find another scripting language for DOS but to prototype this project I'd like to not have to learn a new language as well. :) Thanks in advance for ANY suggestions. Matt -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Code should be selv-maintaining!

2011-08-30 Thread Matt Graham
From: David Harkness > I don't always use braces, but when I do I use Compact Control Readability > style. Stay coding, my friends. ...and when you use CCR style, you can sing, "I see a bad brace a-risin'"? -- Matt G / Dances With Crows The Crow202 Blog: http://cr

Re: [PHP] Best editor?

2011-08-03 Thread Matt Giddings
Notepad!!! LOL.. I use netbeans but eclipse is nice. A lot of it is personal opinion. On Wed, Aug 3, 2011 at 9:46 AM, Florian Müller wrote: > > Maybe an adittional information: PSPad is completely freeware and portable. > > You can download it right here: http://pspad.en.softonic.com/ > > This

Re: [PHP] notices nightmare - looking for a regex solution

2011-06-01 Thread Matt Giddings
I was thinking about this a little more and thought that the method I sent before will work, but it has the potential of clobbering variables that are not related to this warning/notice. Best bet would be to create a list of file names that contain the offending variables then feed that to sed usi

Re: [PHP] notices nightmare - looking for a regex solution

2011-06-01 Thread Matt Giddings
this method does not create a backup file for you. You can do a quick check (but not fool proof) by using this command find /htdocs_folder -name \*.php -print | xargs grep "\$array_name" | more You may need to remove the slash in front of the $ sign. Matt On Wed, Jun 1, 2011 at

[PHP] Re: postgresql database access failure

2011-05-02 Thread Matt Graham
ve functions do more, or do it better than whatever the latest and greatest layer of abstraction does. -- Matt G / Dances With Crows The Crow202 Blog: http://crow202.org/wordpress/ There is no Darkness in Eternity/But only Light too dim for us to see -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] code quest

2010-12-04 Thread Matt Graham
see what you get. I'll use SSI for "dumb" blocks of text and php include for "smart" blocks of code, because IME that tends to produce fewer instances of gross stupidity. Note that YMMV on all this and ICBW. -- Matt G / Dances With Crows The Crow202 Blog: http://crow2

Re: [PHP] Template engines

2010-11-08 Thread Matt Giddings
On Mon, Nov 8, 2010 at 9:39 PM, David McGlone wrote: > On Mon, 2010-11-08 at 16:51 -0500, Steve Staples wrote: > > On Mon, 2010-11-08 at 14:41 -0700, Hansen, Mike wrote: > > > I really like the idea of using a templating engine. Which one do you > use? Why? For those that don't use templating eng

RE: [PHP] Pros/Cons of using mysqli prepared statments

2010-11-04 Thread Matt Graham
eth. The initial idea was for the app to do almost nothing but call stored procedures and display results; this caused a number of problems which were ignored or solved badly. (I'd almost forgotten that horrible mess where I had no input on anything design-related, thank you for reminding

[PHP] Re: Receiving Live data

2010-10-27 Thread Matt Anderton
look at Prototype's PeriodicalUpdater: http://prototypejs.org/api/ajax/periodicalUpdater -- matt On Wed, Oct 27, 2010 at 5:10 PM, Cameron Mc Gorian wrote: > Hi, > > I want to find out if it is possible to receive live data using PHP and > MySQL. I have am developing a websit

Re: [PHP] work online

2010-10-18 Thread Matt M.
On Mon, 2010-10-18 at 13:03 -0400, Govinda wrote: > > At 4:40 PM +0200 10/18/10, Jordan Jovanov wrote: > >> Hello Everybody, > >> > >> > >> Does somebody know company for PHP programing where people can work > >> from home? Actual I only want to know does have regular or part > >> time job for

Re: [PHP] Eclipse, Komodo, Netbeans, Zend Studio, PHP Storm, other?

2010-10-13 Thread Matt Giddings
I've tried Eclipse and Netbeans and have found Netbeans to fit my needs well. On Wed, Oct 13, 2010 at 1:40 PM, James Diamond wrote: > Hey Mike, > > I use zend eclipse, love it. > > What I love about it is what I love about any IDE, code complete, project > configurations, customizable preference

[PHP] Re: Is it possible to create a global namespace alias?

2010-10-05 Thread Matt Palermo
I'm assuming there is no way to make a global alias. Can anyone confirm/deny this? ""Matt Palermo"" wrote in message news:5e7b8989448b45dbbeeb6fb89b3f3...@rachet... Is it possible to create a global namespace alias in PHP or does the alias have to be defined

[PHP] Is it possible to create a global namespace alias?

2010-10-04 Thread Matt Palermo
index.php file. Is there a way to make the “nsItem” alias a “global” one, so that I don’t have to define it in EVERY file that I want to use? -Matt

[PHP] Is it possible to create a global namespace alias?

2010-10-03 Thread Matt Palermo
index.php file. Is there a way to make the “nsItem” alias a “global” one, so that I don’t have to define it in EVERY file that I want to use? -Matt

[PHP] "Downgrading" HTML

2010-09-16 Thread Matt Neimeyer
. Blah This is for an eReader I love but is long out of production and the converter tool only works with HTML 3.2 Thanks in advance. Matt -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] adduser & php

2010-07-10 Thread Matt M.
ide quotes, it is not getting through. From: Ashley Sheridan Sent: Saturday, July 10, 2010 2:01 PM To: Matt Morrow Cc: php-general@lists.php.net Subject: Re: [PHP] adduser & php On Sat, 2010-07-10 at 13:45 -0500, Matt Morrow wrote: I am using php 5 on OpenBSD 4.7 I have a script

[PHP] adduser & php

2010-07-10 Thread Matt Morrow
e output is: Added user ``hosting'' I have validated that $username and $password contain the correct values from the form, by outputting them as well above the line which calls the adduser command. Any help is appreciated. Matt

Re: [PHP] Will PHP ever "grow up" and have threading?

2010-03-24 Thread Matt Giddings
ok, how do I get off this list?

Re: [PHP] Will PHP ever "grow up" and have threading?

2010-03-24 Thread Matt Giddings
unsubscribe

Re: [PHP] Fun with Streams

2010-02-24 Thread Matt Neimeyer
, it makes it simple to just dump row after row of data into it for exports and simple reports. Matt On Mon, Feb 22, 2010 at 4:14 AM, Rene Veerman wrote: > just curious, why did you choose to use it from behind a stream wrapper? > > On Sun, Feb 21, 2010 at 11:03 PM, Matt Neimeyer wr

[PHP] Fun with Streams

2010-02-21 Thread Matt Neimeyer
eam_tell was even being called). Can anyone tell me what I'm doing wrong or suggest another way to "communicate" into the stream wrapper that will be compatible with PHP 4 and 5 on OSX, Linux and Windows? Thanks Matt -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

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

2010-02-18 Thread Matt Neimeyer
the form. It's been a couple years since I played with it so there might have been some additional software that kicked the "enter". Then you process the data as you would for any other text field submission. It worked well enough to catalog a couple thousand books in a single evenin

[PHP] storing a mysql query in mysql

2010-02-17 Thread Matt Giddings
with sqlyog its f'ed up beyond belief. Is there another/better way to store this information? Thanks, Matt

Re: [PHP] Change styling depending on var value

2009-11-23 Thread Phil Matt
Mari Masuda wrote: This may be a dumb question, but did you actually fetch the db query's results and put them in $row before trying to use $row? In MySQL you could do something like: $query = "select * from my_table"; $result = mysql_query($query); $row = mysql_fetch_array($result); //this

Re: [PHP] Change styling depending on var value

2009-11-20 Thread Phil Matt
Ashley Sheridan wrote: put var_dump($row); I inserted this line in the script at the end of the html table, still inside the PHP echo statement. This yields: bool(false) Cheers --- Phil -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Change styling depending on var value

2009-11-20 Thread Phil Matt
Ashley Sheridan wrote: As Mike pointed out, I meant var_dump(), sorry! Is the idea to put the variable in question within the parentheses? I tried the statement, var_dump($row[3]; And I got in the output: NULL Also tried var_dump(); And I got in the output: Warning: Wrong parameter co

Re: [PHP] Change styling depending on var value

2009-11-20 Thread Phil Matt
Ashley Sheridan wrote: That's not a vardump, a vardump would contain the type of variable. I wanted to see the whole thing. I played with this for a while and checked the PHP manual; not sure how to use this. Cheers --- Phil -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] Change styling depending on var value

2009-11-20 Thread Phil Matt
Ashley Sheridan wrote: copy the results of this: vardump($row); Sirloin Steak freshAcmemeat Chicken Breast frozen Acmemeat Decaf Columbianpantry Giant coffee Ice Cream frozen Giant dessert All looks as expected. NB: This is just te

Re: RES: [PHP] CSS and variables

2009-11-20 Thread Phil Matt
Jônatas Zechim wrote: Try: echo '' . $row[1] . ''; Thanks, Jônatas. This was the solution. Cheers --- Phil -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Change styling depending on var value

2009-11-20 Thread Phil Matt
Dan McCullough wrote: To add to what Ashley said about $row[3], remember that when you are returning from the db the counter for fields will start at 0 not 1, so if its the 3rd field that will be $row[2]. You might also want to do switch rather then elseif but thats always a good debate.

Re: [PHP] Change styling depending on var value

2009-11-20 Thread Phil Matt
Ashley Sheridan wrote: Copying back the phplist *again*! Sorry. I'll remember to copy in... what does your code currently look like now, with the right == in? $entree="meat"; $beverage="coffee"; if ($row[3] == $entree) { $newcolor="color:red"; } elseif ($row[3] == $beverage) { $newcol

[PHP] Change styling depending on var value

2009-11-20 Thread Phil Matt
I am trying to style HTML table cells depending on the values stored in a MySQL db. Thanks to other on this list, I can now refer to the variable that holds a CSS styling value. Now, I need to apply different values of that variable, depending on the content of the table cell itself. I tried

[PHP] CSS and variables

2009-11-20 Thread Phil Matt
De-lurking here. I'm trying, with no success, to use some CSS styling on my PHP output. Here's the code I want to style: echo ''.$row[0].''.$row[1].' I want to use a CSS style for the second cell, picking up the style from the value of a variable. I tried this: $newcolor = "color: red"; '

Re: [PHP] I'm not crazy I swear it... IE vs Safari and Firefox - The impossible!

2009-08-31 Thread Matt Neimeyer
"Net" tab? While I'm familiar with the concepts... :) I have not... this is the first problem I've had which could not be directly traced to problematic code (php syntax or logic errors, mysql query errors, problems with database optimizations, etc) Matt -- PHP General Mailing

Re: [PHP] I'm not crazy I swear it... IE vs Safari and Firefox - The impossible!

2009-08-31 Thread Matt Neimeyer
browser) isn't IE. Neither would I... but unless I have to for some other reason I prefer PHP 5+, MySQL 5+, Apache 2+ and a *nix of some flavor for my web serving needs. Matt -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] I'm not crazy I swear it... IE vs Safari and Firefox - The impossible!

2009-08-31 Thread Matt Neimeyer
the Safari as well. Matt -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] I'm not crazy I swear it... IE vs Safari and Firefox - The impossible!

2009-08-31 Thread Matt Neimeyer
> No answers - just more questions to maybe point you in a direction you > haven't been Anything is appreciated... > Is it possible that the query/script is taking too long to build the > response page and FireFox/Safari is asking for an empty query result? I don't think so... the tr

[PHP] I'm not crazy I swear it... IE vs Safari and Firefox - The impossible!

2009-08-31 Thread Matt Neimeyer
no other explanation of why it DOES matter... I've tried disabling prefetching in Firefox (thinking MAYBE the browser was prefetching the "bailout" link back to step 1 from step 3). The initialize in step 1 fixed another problem we were having but I did try disabling it temporarily to no av

Re: [PHP] Determining Calling Script Information

2009-08-13 Thread Matt Giddings
Thanks for the pointers! Matt Robert Cummings wrote: Matt Giddings wrote: Hi, Is there a way (other than using __LINE__ and __FILE__) to determine which file & line called a function/method? I would like to add some debugging information to a method but I don't want to have to go

[PHP] Determining Calling Script Information

2009-08-13 Thread Matt Giddings
arameters. Guess I'm looking for a simple solution. Anyway, if there is a way just point me in the right direction and I'll take it from there. Thanks, Matt -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Script to Compare Database Structures

2009-08-05 Thread Matt Neimeyer
I finally got a chance to play with this and it looks like it is exactly what I need. Thanks! On Fri, Jul 31, 2009 at 11:50 PM, German Geek wrote: > have you tried mysqldiff? >> I want to be able to compare the structure of two different clients >> databases that might be on different servers tha

[PHP] Script to Compare Database Structures

2009-07-31 Thread Matt Neimeyer
the local structure match the uploaded structure. Thanks in advance... Matt -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: This isn't infinitely recursive is it?

2009-07-31 Thread Matt Neimeyer
I like it... Thanks! On Thu, Jul 30, 2009 at 8:04 PM, Ben Dunlap wrote: >> I don't THINK I need to worry about circular mappings... but I'm not >> sure how to check for it if I did... > Would the following work? It avoids recursion entirely and also checks for > circular mappings. You can plug in

[PHP] This isn't infinitely recursive is it?

2009-07-30 Thread Matt Neimeyer
. but I'm not sure how to check for it if I did... Any suggestions? Thanks! Matt -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Broken IF behavior? (Changing the branch changes the evaluation)

2009-07-29 Thread Matt Neimeyer
ot;Returns an array of strings that corresponds to the fetched row, or FALSE if there are no more rows." Is there a way to differentiate between a FALSE for no more rows and an error? Matt -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Broken IF behavior? (Changing the branch changes the evaluation)

2009-07-28 Thread Matt Neimeyer
e" [1]=> string(11) "Sample Cust" ["value"]=> string(11) "Sample Cust" } On Tue, Jul 28, 2009 at 2:56 PM, Eddie Drapkin wrote: > On Tue, Jul 28, 2009 at 2:48 PM, Matt Neimeyer wrote: >> Background: I'm converting a webapp from Visual

[PHP] Broken IF behavior? (Changing the branch changes the evaluation)

2009-07-28 Thread Matt Neimeyer
tError" on the screen and $Ret gets returned. WHY does adding the die() inside the { } change the way the if is evaluated? By the way I've tested this on 4.4.x on OSX and Windows, and on 5.2.5 on Windows... Thanks Matt -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Converting SQL Dialects

2009-07-23 Thread Matt Neimeyer
, 1, 1, 1 but... select coalesce(0,"")="",coalesce("","")="",coalesce(0,"")="",coalesce("","")=""; returns 0, 1, 0, 1 Which implies that in certain circumstances "" = 0 but 0 != "&quo

Re: [PHP] Converting SQL Dialects

2009-07-21 Thread Matt Neimeyer
auto-conversions covers another X% of upgrades, and auto-convert FunctionX (whatever it is...) gives us another X% of upgrades... that this will result in a hopefully small number of saved queries that are flagged for manual upgrading. (And not be so painful in development that it still nets us saved ti

Re: [PHP] PHP and FoxPro

2009-07-21 Thread Matt Neimeyer
,a=a+1 WHERE x=y You might be able to limit the total number of calls to the database that way... If I wasn't in the process of migrating to MySQL I might give it a whirl... :) Hope this helps whatever you decide to do. On Tue, Jul 21, 2009 at 8:27 AM, Floyd Resler wrote: > Matt, >

[PHP] Converting SQL Dialects

2009-07-21 Thread Matt Neimeyer
X="") or (X is null OR x=0) etc... These are for customer "stored" queries... I've already manually converted "system" queries and I'm frustrated to the point of giving up and adding a column "untested" and let the end user figure it out but that seems b

Re: [PHP] PHP and FoxPro

2009-07-20 Thread Matt Neimeyer
ften this will happen. Other than that... Works like a charm. Looking forward, once you bite the bullet and convert to MySQL (at least for us) you can almost change odbtp_ to mysql_ and be up and running. (Assuming you limit yourself to "pure" SQL and not invoke VFP functions.) Matt -

[PHP] Launch Windows Program from PHP

2009-07-13 Thread Matt Neimeyer
f javascript that will cause "phase 3" to automatically start. Any ideas? Thanks! Matt -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Split up Date Range

2009-07-01 Thread Matt Neimeyer
On Jul 1, 2009, at 11:33, Ashley Sheridan wrote: On Wednesday 01 July 2009 16:25:29 Matt Neimeyer wrote: We've got a project where "Date Of Attendance" is moving from a single type in character field to an automatically built field based on a DateBegin date field and

[PHP] Split up Date Range

2009-07-01 Thread Matt Neimeyer
g as you have have only two elements then consider each item by itself. If it's not handled by the above rules then don't split it up. Thanks in advance. Matt -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] OT mysql pivot table problem

2009-06-26 Thread Matt Giddings
Ummm yeah, its going to take me a while to wrap my head around that one. thanks though! Matt On Thu, Jun 25, 2009 at 5:07 PM, Andrew Ballard wrote: > On Thu, Jun 25, 2009 at 4:21 PM, Andrew Ballard wrote: > > On Thu, Jun 25, 2009 at 3:20 PM, Matt Giddings wrote: > >> I kn

Re: [PHP] OT mysql pivot table problem

2009-06-25 Thread Matt Giddings
Thanks for taking the time to provide an example. I'm going to take the advice given by you and others and simply do this in php instead of looking for a fancy mysql solution. ; ) Dang, and I was really wanting to wow myself today... Thanks again! Matt On Thu, Jun 25, 2009 at 3:51 PM, A

[PHP] OT mysql pivot table problem

2009-06-25 Thread Matt Giddings
I know this is the off topic (sorry), but it is a php project that I'm working on! I need some pointers on how to pivot a mysql column (containing comma delimited data) into an equal number of rows (see example). Any direction (pointers to links, etc. would be appreciated). >From this: user.tab

[PHP] PHP module "portability" on OSX 10.4

2009-06-23 Thread Matt Neimeyer
s like it should work... but at the same time, something in my head is telling me it shouldn't work... Barring that does anyone have steps "written down" that I can follow to compile php_gd.so with libpng compiled in somehow so it is only one file? Thanks in advance! Matt --

Re: [PHP] Re: Same Page, Fundamentally Different Behavior OR is Firefox broken?

2009-06-13 Thread Matt Neimeyer
I'd have to check... But am I to understand that no-cache works with pre-caching? I always assumed it basically meant "when you get this page, don't keep it for next time"? Thanks! On Fri, Jun 12, 2009 at 2:04 AM, Manuel C. wrote: > Matt Neimeyer a écrit : >> >&g

[PHP] Same Page, Fundamentally Different Behavior OR is Firefox broken?

2009-06-11 Thread Matt Neimeyer
on in the address. Has anyone run into this behavior before? Any recommendations on how to stop it? Preferably from the server with code of some sort... Thanks in advance. Matt -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Software to read/write Excel to CD?

2009-05-14 Thread Matt Graham
here are so many unknown >variables that I would really feel for the poor team who had to take >that project on! It sounds like whoever defined the requirements was trying to solve a problem in the wrong way. Why drag physical media into this when you have the Net available? And if the clie

Re: [PHP] Boolean Parameter to 3 Options?

2009-04-29 Thread Matt Neimeyer
On Wed, Apr 29, 2009 at 1:30 PM, Shawn McKenzie wrote: > Philip Thompson wrote: >> On Apr 29, 2009, at 11:42 AM, Matt Neimeyer wrote: >> >>> I have a function that currently takes a boolean value as a parameter. >>> But now I want to expand it to 3 options...

[PHP] Boolean Parameter to 3 Options?

2009-04-29 Thread Matt Neimeyer
} Something about that disturbs me. Perhaps because any time I think "Oh it will be as simple as..." it usually isn't. Thanks in advance! Matt -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Connecting to dBase using ODBC on Mac OS X

2009-04-12 Thread Matt Neimeyer
ilable Novell network file redirectors. At least that's what the Client's IT department tells me whenever we relay user complaints about the speed at that site) Hope this helps. Matt On Thu, Apr 9, 2009 at 10:53 AM, Rahul S. Johari wrote: > Ave, > > Does anyone have any knowle

Re: [PHP] Problems with implode

2009-03-24 Thread Matt Neimeyer
Yeah, like the odd backspace or carriage return perhaps. I can't tell you how many times I've had data that contained < and got all kinds of screwed up when data "disapeared" when really the browser was just turning it into an HTML tag. Matt -- PHP General Mailing List

[PHP] Reading from a COM port in Windows blows up

2009-03-14 Thread Matt Neimeyer
I just recently got a new Onkyo TX-SR706 Audio Receiver that has an RS232 interface and I thought... cool... Build a Web Interface so I can control it from several rooms away. The code below works using PHP 5.2.8 under Apache (XAMPP) on Windows XP to change the current input of my Audio Receiver.

[PHP] Sanitizing Numbers

2009-03-13 Thread Matt Neimeyer
umeric field. Thanks for your collective guidance. Matt -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] function_exists question

2009-01-16 Thread Matt Pagel
recision parameter was added in php4, so will not work in php3. However, function_exists would return TRUE for both 3 and 4, but round itself would fail if I tried to send a precision level to the php3 server. Thanks much, Matt P.S. Of course the modified "function_exists" would

[PHP] Re: Accessing mysql_fetch_object with variable names

2008-11-14 Thread Matt Jones
I have been thumped with the clue bat and now have a solution. Thanks for your time! -- Matt -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP job available, Phoenix, AZ, USA

2008-10-02 Thread Matt Graham
*off-list*. Hope this helps, -- For every complex problem, there is a solution that is simple, neat, and wrong. My blog: http://crow202.org/wordpress/ Matt G|There is no Darkness in Eternity/But only Light too dim for us to see -- PHP General Mailing List (http://www.php.net/

[PHP] Re: rfc822_write_address() / CVE-2008-2829 problem

2008-07-07 Thread Matt Graham
From: "M. Sokolewicz" <[EMAIL PROTECTED]> > Matt Graham wrote: >> PHP had potential vulnerability CVE-2008-2829 >> http://bugs.php.net/bug.php?id=42862 for a reasonable discussion and >> an (unofficial) patch. >> >> I'm just curious

[PHP] rfc822_write_address() / CVE-2008-2829 problem

2008-07-07 Thread Matt Graham
Hello, list. A few days ago, a security scan said that our machines that were running PHP had potential vulnerability CVE-2008-2829 , a buffer overflow in rfc822_write_address(). Discussions about this are relatively easy to find with Google, but check out http://bugs.php.net/bug.php?id=42862 f

[PHP] Re: Execute command line as a different user

2008-07-01 Thread Matt Palermo
Is there something wrong with this command? Is there a different way to do it? Thanks, Matt ""Matt palermo"" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] My PHP is running as a user with limited rights. I'd like to execute a command line as a diff

[PHP] Re: Execute command line as a different user

2008-07-01 Thread Matt Palermo
Okay, I'll have to look into that. I have very limited knowledge with shell scripts. You wouldn't have an example of one that can do what I need do you? Thanks, Matt "Shawn McKenzie" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Matt palermo wro

[PHP] Execute command line as a different user

2008-07-01 Thread Matt palermo
ere a command I can use to make PHP run a delete command as the admin user? If so, how can I do this? Thanks, Matt -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Recursion... Sort of...

2008-05-09 Thread Matt Neimeyer
s on it's own output like a factorial... Not just a function that is called inside itself. This got me where I needed to be and it is GREATLY appreciated! Matt -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Recursion... Sort of...

2008-05-08 Thread Matt Neimeyer
t that approach... Unless that really is the easiest way. Thanks in advance! Matt -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] ldap_search results limited

2008-05-07 Thread Matt Burtch
Thanks for the tips. phpLDAPAdmin was hanging while trying to authenticate, but I'll give it a try again later. Nathan: splitting up the search; I hadn't considered this! It is working nicely for the time being, thanks. - MB On Wed, May 7, 2008 at 3:23 PM, Jay Blanchard <[EMAIL PROTECTED]> wrote

[PHP] TLS transport for Windows

2007-10-22 Thread Matt Arnilo S. Baluyos (Mailing Lists)
Hi all, I'm looking for a PHP environment for Windows (like XAMPP), that already has TLS transport built-in. Would anyone know of something like it? If not, any pointers on how to get TLS transport for a PHP Windows environment? Thanks, Matt -- Stand before it and there is no begi

Re: [PHP] Which PHP-Editor to use?

2007-10-17 Thread Matt Arnilo S. Baluyos (Mailing Lists)
On 10/18/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > 2007/10/18, Matt Arnilo S. Baluyos (Mailing Lists) > <[EMAIL PROTECTED]>: > > Does Eclipse already have word-wrap? > > > > To my disappointment, it was still lacking that basic functionality > > t

Re: [PHP] Which PHP-Editor to use?

2007-10-17 Thread Matt Arnilo S. Baluyos (Mailing Lists)
Does Eclipse already have word-wrap? To my disappointment, it was still lacking that basic functionality the last time I tried it. On 8/3/07, Nathan Nobbe <[EMAIL PROTECTED]> wrote: > eclipse with php eclipse, but i may be switching to eclipse pdt once it > becomes stable if there is no support

Re: [PHP] Which PHP-Editor to use?

2007-10-16 Thread Matt Livingston
enough to cause damage to my PC that could not easily be cleaned up - I would simply reformat the HD and reinstall the OS ;) (and that process of reformatting and reinstalling takes a mere 30 minutes to 2 hours - latter being the Windows and former being Ubuntu) -Matt On 10/16/07, Bastien Koe

[PHP] Two MySQL instances in one server

2007-10-15 Thread Matt Arnilo S. Baluyos (Mailing Lists)
possible, I would prefer a purely mod_php solution as opposed to one that would have PHP running on CGI. Thanks in advance, Matt -- Stand before it and there is no beginning. Follow it and there is no end. Stay with the ancient Tao, Move with the present. -- PHP General Mailing List (http

Re: [PHP] Using PHP to determine if user has Java installed

2007-09-05 Thread Matt Livingston
installed and provide a link to the Java site where they can download it. Thanks again all! -Matt On 9/5/07, David Powers <[EMAIL PROTECTED]> wrote: > > tedd wrote: > > At 3:17 PM -0600 9/5/07, Matt Livingston wrote: > >> > >> I want to know if it is possible

[PHP] Using PHP to determine if user has Java installed

2007-09-05 Thread Matt Livingston
Hey List, I want to know if it is possible to use PHP to find out if a visitor has Java Runtime Environment installed on a computer. Is there a way to use PHP to find this similiar to how PHP can be used to find out browser info? Thanks in advance for your help. -- -Matt Livingston

[PHP] ORM framework suggestion

2007-08-08 Thread Matt Arnilo S. Baluyos (Mailing Lists)
to speed things up. I can perhaps test-drive both frameworks above and see what works better for me but maybe there are users here who's have had experience with either one (or better, both). Regards, Matt -- Stand before it and there is no beginning. Follow it and there is no end. Stay

Re: [PHP] How to implement a plugin system?

2007-08-06 Thread Matt Zandstra
You might want to take a look at stickleback: http://sourceforge.net/projects/stickleback Documentation is very thin on the ground right now, but there's a presentation here: http://www.appulsus.com/resources/stickpres200706/img0.html mz On Mon, 6 Aug 2007, Hamza Saglam wrote: Hello Boro,

Re: [PHP] compose html body with variables

2007-08-06 Thread Matt
Edward Kay wrote: -Original Message- From: Matt [mailto:[EMAIL PROTECTED] Sent: 06 August 2007 15:38 To: php-general@lists.php.net Subject: [PHP] compose html body with variables Hello, I'm trying to compose the body of an html email to use with the mail() function. I'm ru

[PHP] compose html body with variables

2007-08-06 Thread Matt
g cost for client notification $10.00"; echo ""; } echo "Total cost is $" . number_format($totalcost,2); echo ""; echo "foo Services"; $subject = "Online Freight Quote"; mail($email, $subject, $body, "From: [EMAIL PROTECTED]: [EMAIL PROTECTED]: [EMAIL PROTECTED]: PHP 4.x\r\nMIME-Version: 1.0\r\nContent-Type: text/html; charset=iso-8859-1\r\n"); If anyone could assist me I'd appreciate it very much, Matt -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

  1   2   3   4   5   6   7   8   9   10   >