RE: [PHP] CAN NOT read qmail

2008-04-17 Thread Jay Blanchard
[snip] I do not get it. I do not where code has basic mistake. [/snip] And that is why putting in basic error checking will help, for instance; $fp = fopen($file, r); if($fp){ while(!feof($fp)) { $data = fgets($fp, 1024); echo $data br; } } else {

RE: [PHP] CAN NOT read qmail

2008-04-17 Thread Jay Blanchard
[snip] I try your code; It is great. But I get faile. [/snip] If you get a failure then you might not have permission to open the file. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Re: php framework vs just php?

2008-04-22 Thread Jay Blanchard
[snip] If you don't use a framework then obviously you are writing nothing but mickey mouse programs, and wouldn't stand a chance when it comes to writing a proper application. ..If you think you can achieve the same level of productivity WITHOUT a framework then you are living in cloud

RE: [PHP] Re: php framework vs just php?

2008-04-22 Thread Jay Blanchard
[snip] [snip] If you don't use a framework then obviously you are writing nothing but mickey mouse programs, and wouldn't stand a chance when it comes to writing a proper application. ..If you think you can achieve the same level of productivity WITHOUT a framework then you are living in

RE: [PHP] Re: php framework vs just php?

2008-04-22 Thread Jay Blanchard
[snip] The real measure of a good framework is the length of time it takes to create a new database table, then write the components to maintain the contents of that table. I can do this in 5 minutes without having to write a single line of PHP, HTML or SQL. If you can't match this then you're

RE: [PHP] Re: php framework vs just php?

2008-04-22 Thread Jay Blanchard
[snip] But can you create a database table, then generate the PHP scripts which generate the HTML and SQL which allow an online user to read, write, update and delete records from this table without writing even a single line of code? Can you do this with immediate access to a role based access

RE: [PHP] Re: php framework vs just php?

2008-04-22 Thread Jay Blanchard
[snip] Yes, and it doesn't take 5 minutes. Then where can us mere mortals download this wonderful framework so that we can all share in your wizardry? [/snip] It is not a framework, it is a set of functions. But since we are in a semantical discussion about frameworks then this re-usable code

RE: [PHP] Re: php framework vs just php?

2008-04-22 Thread Jay Blanchard
[snip] You haven't answered the question. Where can this piece of wizardry be downloaded so that it can be reviewed by your peers? [/snip] It is not available for download but it has been reviewed by peers on several project teams who have used it. It was developed specifically for a company who

RE: [PHP] Re: php framework vs just php?

2008-04-23 Thread Jay Blanchard
[snip] Let me know when as I could do with a good laugh. [/snip] Fair enough, you have already given me several! :) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Re: php framework vs just php?

2008-04-24 Thread Jay Blanchard
[snip] ...laugh... [/snip] I did a quick and dirty of just one of those functions. This function takes a table and creates a form based on the table. It needs quite a bit of refining, but I am willing to share and let you guys and gals throw suggestions; function formCreate($database, $table,

[PHP] peer review (was php framework vs just php?)

2008-04-25 Thread Jay Blanchard
I did a quick and dirty of just one of those functions. This function takes a table and creates a form based on the table. It needs quite a bit of refining, but I am willing to share and let you guys and gals throw suggestions; function formCreate($database, $table, $action, $excludeCols,

RE: [PHP] peer review (was php framework vs just php?)

2008-04-25 Thread Jay Blanchard
[snip] I can't say I've ever had a form that exactly matched a database table for a user perspective. From an admin perspective that changes, but that was when I downloaded PHPMyAdmin for the client. It was amazing, every form matched the database table and you could view all the rows too, and

RE: [PHP] peer review (was php framework vs just php?)

2008-04-25 Thread Jay Blanchard
[snip] to add to this; i dealt w/ a clunky codebase at my last job.  working w/ single table form generation was a snap, why you could even tell it which columns you wanted to display!  it would also try to build the appropriate input type in html and handled creation of select elements and

RE: [PHP] peer review (was php framework vs just php?)

2008-04-27 Thread Jay Blanchard
[snip] Actually it's quite easy. I've got a similar object to the one you guys described (can't really share it - I'm on salary so technically it belongs to my boss.) Anyhow when I do my table layout, if there's a look-up, I name the field lookuptable_id in the DB. In my object, it looks for any

RE: [PHP] SMS Cellular Text Messaging

2008-04-28 Thread Jay Blanchard
[snip] Anyone enlighten me about sending SMS text messages via sendmail or or just php mail()? I've been Googling, etc. and everything I've found so far, comes up with for-fee services. [/snip] SMS messaging requires a gateway, hence the for-fee services. -- PHP General Mailing List

RE: [PHP] SMS Cellular Text Messaging

2008-04-28 Thread Jay Blanchard
[snip] I didn't word my question well. I know about the following, etc. And, I know they charge their customers. Cingular: [EMAIL PROTECTED] Sprint: [EMAIL PROTECTED] Verizon: [EMAIL PROTECTED] Nextel: [EMAIL PROTECTED] I want to send a pure SMS via these gateways without the regular email

RE: [PHP] SMS Cellular Text Messaging

2008-04-28 Thread Jay Blanchard
[snip] Do these gateways get paid?  I can send a text message to [EMAIL PROTECTED] using sendmail. So it appears Verizon is just charging my phone's account.  Is that the case with the 3d party gateways? [/snip] As is the case with everything telecom someone is going to make money off of it.

RE: [PHP] SMS Cellular Text Messaging

2008-04-28 Thread Jay Blanchard
[snip] Do you have any experience with any of 3d party gateways? [/snip] No, we own our own gateway -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] PHP Errors to screen

2008-04-29 Thread Jay Blanchard
[snip] Where do I change the setting to print PHP errors to the screen when running in a web browser? [/snip] http://us2.php.net/manual/en/function.error-reporting.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Phpstop.com project - wanna be a writer?

2008-05-05 Thread Jay Blanchard
[snip] I have gotten hold of a very nice domain name ( phpstop.com ) and have thought of something nice I could do with it. Now, my idea is to start an E-ducation (online PHP education) website with some authors who know what they're talking about. [/snip] By the very act of responding to this I

RE: [PHP] ldap_search results limited

2008-05-07 Thread Jay Blanchard
[snip] I am running into a problem with my queries returning a limited number of result entries. [/snip] Most LDAP servers set a limit, it is usually not a PHP problem. One way to solve is to query by first letter of last name and throw into an array (iterating through the alphabet). function

RE: [PHP] Tracking down the elusive expecting T_PAAMAYIM_NEKUDOTAYIM

2008-05-14 Thread Jay Blanchard
[snip] I have a class that is throwing the error: syntax error, unexpected ')', expecting T_PAAMAYIM_NEKUDOTAYIM ... [/snip] Parse error: syntax error, unexpected T_PAAMAYIM_NEKUDOTAYIM (Hebrew) It means there's an unexpected double colon where there shouldn't have been. self::$this-titles =

RE: [PHP] PHP authenticating user over SSL

2008-05-23 Thread Jay Blanchard
[snip] Where do I post feature requests for PHP? I need some functions in PHP to let a user log on to a server with his SSL client certificate. I mean, when a user has his own SSL client certificate, then a server should be able to log the user in without needing user name and password.

RE: [PHP] slowness mystery (part 2)

2008-06-10 Thread Jay Blanchard
[snip] But now i have sort of the same problem in loading a bit of HTML text. It takes 1100ms to load 2Kb of HTML. I think it should be more like 100-300ms. [/snip] Server config? Apache config? Bandwidth? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

RE: [PHP] class? package?

2008-06-10 Thread Jay Blanchard
[snip] If that's the case, then why not just use one class as one package? What's the point of splitting a package into several classes? :-( [/snip] First of all think of what a class is and what it is meant to represent. Secondly think of a package in literal sense...a package can hold one or

RE: [PHP] Row Count

2008-06-10 Thread Jay Blanchard
[snip] I am having a problem with trying to count the number of rows returned by my query. I connect to the database fine, my query displays and runs fine, but my row count is incorrect. If I do not put in any serch criteria and my basic query ends up being SELECT * FROM

RE: [PHP] Row Count

2008-06-10 Thread Jay Blanchard
[snip] On Tue, Jun 10, 2008 at 10:18 AM, Jay Blanchard [EMAIL PROTECTED] wrote: http://www.php.net/mysql_num_rows That would be just peachy if it worked on his Informix database, Jay. ;-P [/snip] OK, OK...so I read it through too quickly! Then I would suggest a second query to count

RE: [PHP] About HTML CSS

2008-06-10 Thread Jay Blanchard
[snip] I wonder if there some list about HTML/CSS/JavaScript and Genereal Web Design. [/snip] I wondered that too! And then I found Google and searched for them and there they were. 8^{)} -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Row Count

2008-06-10 Thread Jay Blanchard
[snip] He is using the ifx extension for an informix database, not mysql [/snip] Dan was one of the ones who so clearly corrected me! Wow, are we all rushing through stuff today?? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Row Count

2008-06-10 Thread Jay Blanchard
[snip] print_r($rowcount); returns Array ( [(count(*))] = 110796.0 ) and 110796 is the correct number of rows in my table, but that number isn't coming through the the variable. [/snip] Because ifx_fetch_row returns an array, not a value. -- PHP General Mailing List (http://www.php.net/) To

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

2008-06-19 Thread Jay Blanchard
[snip] I wonder how many of us on the list served. It's got to be more than just you and I, Tedd, wouldn't you think? [/snip] U.S. Air Force -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

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

2008-06-19 Thread Jay Blanchard
[snip] I don't want to start any arguments or flame wars, but it's been my opinion for years that the US should require at least one year in the armed services as well. If you want freedom and privileges, you should earn them, not feel automatically entitled to them by birth. [/snip] I do

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

2008-06-19 Thread Jay Blanchard
[snip] www.goarmy.com http://www.gocoastguard.com/ [/snip] http://www.airforce.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Re: (*OT) What we are going to do about those OT's?

2008-06-23 Thread Jay Blanchard
[snip] Please don't create another list. You don't have to read all the threads if you don't want to and skipping over OT posts takes me about 2s a day... (hint use the r key in Thunderbird to mark the thread as read!). I don't know about you but I can afford that amount of time for the

RE: [PHP] Re: (*OT) What we are going to do about those OT's?

2008-06-23 Thread Jay Blanchard
[snip] The only fly in the ointment would be how to notify your account that you are dead? Might have difficulty detecting that, at least just yet. :-) [/snip] Have the instructions in your will. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

RE: [PHP] Include Problem

2008-06-24 Thread Jay Blanchard
[snip] foreach ($lines2 as $line_num = $line2) { echo pLine #b{$line_num}/b : . htmlspecialchars($line2) . /p; } include ('http://www.mysite.com/calculate.php'); My problem is that when I use a blank file that only has ?php include 'http://www.mysite.com/calculate.php'; ? The code

RE: [PHP] Inspiration for a Tombstone.

2008-06-26 Thread Jay Blanchard
[snip] ?php if ($you_can_read_this = Yes) { echo STOP STANDING ON ME!; } ? [/snip] ?php switch($status_jay){ case 'alive': stream_set_timeout ($jay , '157680'); break; case 'vegetable': pull_plug(TRUE); break; case 'dead': oven_set_hot(TRUE);

RE: [PHP] Re: Inspiration for a Tombstone.

2008-06-27 Thread Jay Blanchard
[snip] Really? I do it this way: if ($user_name == Dan S) That not only looks right at first glance, but it actually works. :-) [/snip] This works better though; if(Dan S == $user_name) ... if you drop one of the comparison operators in your haste to type then an error gets thrown and you

RE: [PHP] Re: Inspiration for a Tombstone.

2008-06-27 Thread Jay Blanchard
[snip] And being dyslexic, I knew the 'Dan S' should have come first, but didn't immediately recognize it as I was rushing to point out a double equal-sign boo-boo made by Col. [/snip] Had Col used the method we're speaking of here the error would have been thrown and he would have found the

RE: [PHP] Looking for a reasonable explanation as to why $_REQUEST exists

2008-07-07 Thread Jay Blanchard
[snip] When you use register_globals it extracts the vars from get, post, cookie and session, or used to. But, I don't think session vars are in $_REQUEST. [/snip] $_REQUEST is no different than $_POST or $_GET from a security standpoint. And using register_globals did not carry a security risk

RE: [PHP] Re: What font/size do you use for programming?

2008-07-10 Thread Jay Blanchard
[snip] ... [/snip] 220, 221whatever it takes -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Question regarding OO

2008-07-11 Thread Jay Blanchard
[snip] I understand my error in thinking now. Apple can't extend Tree. Oak, Evergreen or Willow extend Tree. I thank you all for helping me to understand. [/snip] By jove, I think he's got it! Parking space could be a member variable of parking lot, that would make sense. -- PHP General

[PHP] Math Weirdness

2008-07-14 Thread Jay Blanchard
I am totally buffaloed by a set of very simple calculations that I am doing; /* calculate total balance with payments and adjustments */ $totalBalance = $acct['BALANCE'] + $adjBalance; echo number_format($totalBalance, 2, '.', '').\t; /* calculate total charges */

RE: [PHP] Math Weirdness

2008-07-14 Thread Jay Blanchard
[snip] What makes you think the problem is in this code? How about doing the following right before the block of code you've provided so that we can actually check the data with what you're using: ?php echo '$acct[BALANCE]: '.$acct[BALANCE].\n; echo '$adjBalance: '.$adjBalance.\n; echo

RE: [PHP] Math Weirdness

2008-07-14 Thread Jay Blanchard
[snip] So again... from whence do you conjure $endingBal? :) [/snip] $endingBal is conjured from the database tracking the account balance. For any 24 hour period the beginning and ending balance for subsequent days is the same unless adjustments or payments have been made to the account in that

RE: [PHP] Math Weirdness

2008-07-14 Thread Jay Blanchard
[snip] Isn't it possible then that your data is out of synch between the current balance and the previous day's ending balance? [/snip] No, the values are there and correct (it is done with a snapshot). The correct numbers are being used in the math (as shown). When I do this(as you

RE: [PHP] Math Weirdness

2008-07-14 Thread Jay Blanchard
[snip] So does that mean your problem is solved? [/snip] It would appear so. I just need to remember to check for absolute values when working with floats. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Math Weirdness

2008-07-14 Thread Jay Blanchard
[snip] Yeah, I prefer to work with pennies too when doing that stuff. But floats work much better when skimming... harder to track ;) Remind me not to buy weed from Jay. [/snip] Hehehehehehe ;) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Math Weirdness

2008-07-15 Thread Jay Blanchard
[snip] It would appear so. I just need to remember to check for absolute values when working with floats. Yeah, that's Computer Science 101 stuff. (Well, it was when I did my degree 30+ years ago, so it's probably nearer primary school level by now ;) [/snip] This is what happens when you

RE: [PHP] Math Weirdness

2008-07-15 Thread Jay Blanchard
[snip] for most of what the majority of php/script apps deal with, it's probably safe to assume that addition/subtraction will be safe, but i can think of numerous examples where this isn't true... [/snip] As demonstrated by the example I provided, just checking the difference (or lack thereof)

RE: [PHP] Math Weirdness

2008-07-15 Thread Jay Blanchard
[snip] So what you're saying is that you've been skimming for a while and the fruits of your mislabour are adding up? [/snip] Not as far as you know. ;) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Math Weirdness

2008-07-15 Thread Jay Blanchard
[snip] Ask Jay, he's the skimming master! :) [/snip] Bow down before mebut not too far lest ye be skimmed as well. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Changing PHP.ini

2008-07-16 Thread Jay Blanchard
[snip] By visiting php.info in a web browser I have confirmed the location of my php.ini file as /usr/local/php5/lib/php.ini. I open that file and edit the line: ; - display_errors = Off and change it to display_errors = On I then retstart Appache and visit php.info which still reports

RE: [PHP] Math Weirdness

2008-07-16 Thread Jay Blanchard
[snip] And then put it in Jay's pocket since we know he's skimming! If you're lucky maybe he'll cut you in for not telling the boss :P [/snip] Allegedly. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Stumped I Tell You!

2008-07-25 Thread Jay Blanchard
$getEnd = select a.ACCOUNTID as CONTRACT, a.BALANCE/1 as BALANCE, b.STATUS, b.IMSI_ID as MDN, b.IMEI_ID as ESN, ; $getEnd .= b.EQUIP_ID as MIN, b.MKT, b.MARKET_NAME ; $getEnd .= FROM work.account_.$startDate. a ; $getEnd .= JOIN work.customer_.$startDate. b ; $getEnd .= ON ( b.CONTRACT_ID =

RE: [PHP] Stumped I Tell You!

2008-07-25 Thread Jay Blanchard
[snip] [snip!] $endBal = mysql_fetch_array($dbEnd); echo mysql_num_rows($dbEnd); print_r($endBal); Nothing gets returned from those last statements. Am I missing something completely? Right here ?php // Code before if(!$dbEnd = (mysql_query($getEnd, $dbc))){ echo

RE: [PHP] Stumped I Tell You!

2008-07-25 Thread Jay Blanchard
[snip] I'm sure you've already tried this, but did you copy the SQL query echo'd out and try it directly with MySQL to make sure there are rows returned? [/snip] Yes. *slaps forehead soundly* I found that there was a missing greater than sign in a greater than or equal to requirement in an

RE: [PHP] Stumped I Tell You!

2008-07-25 Thread Jay Blanchard
[snip]By the way, I didn't mean to insinuate that your use of the if() condition was incorrect[/snip] No worries. [snip] Someone needs to whack me upside the head every so often. In my case, that might be a patentable invention.[/snip] I see you get whacked around the head here every so

RE: [PHP] Test

2008-07-26 Thread Jay Blanchard
-Original Message- From: Daniel Lambert [mailto:[EMAIL PROTECTED] Sent: Saturday, July 26, 2008 2:48 AM To: php-general@lists.php.net Subject: [PHP] Test Just testing to see if this is correct address to email to. It depends on what you are asking -- PHP General Mailing List

RE: [PHP] get current php locale

2008-07-27 Thread Jay Blanchard
[snip] is there a way to get the current locale being used by php and the encoding it uses? [/snip] Do you mean the locale where the computer connecting to the service is using PHP? Remember, PHP is server side and has no way of gathering data from a 'local' machine unless coupled with something

RE: [PHP] Uploading Large Files - Strange Issue

2008-08-06 Thread Jay Blanchard
[snip] I have a very strange issue coming up when uploading large files ( about 30MB). The problem is it works fine on my computer (and two others that I've tested), but it doesn't work on my client's laptop. It comes up with error code - 0 (which is upload successful), but the actual file is not

[PHP] More math fun

2008-08-12 Thread Jay Blanchard
abs($balanceTest) = 15.22 abs($oldLineArray[16]) = 15.22 $diff = abs($balanceTest) - abs($oldLineArray[16]); echo abs($diff) . \n; 1.7763568394E-15 WTF? This should be a big fat 0 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] More math fun

2008-08-12 Thread Jay Blanchard
[snip] Please provide the list with the following output: ?php var_dump( $balanceTest ); var_dump( $oldLineArray[16] ); ? Methinks you have different data types. [/snip] string(5) 15.22 float(15.22) You're right*smacks forehead*. Sometimes this whole forest and trees thing kills me. --

RE: [PHP] More math fun

2008-08-12 Thread Jay Blanchard
[snip] ?php var_dump( $balanceTest ); var_dump( $oldLineArray[16] ); ? Methinks you have different data types. [/snip] string(5) 15.22 float(15.22) You're right*smacks forehead*. Sometimes this whole forest and trees thing kills me. [/snip] settype($balanceTest, float) had no effect --

RE: [PHP] More math fun

2008-08-12 Thread Jay Blanchard
[snip] string(5) 15.22 float(15.22) You're right*smacks forehead*. Sometimes this whole forest and trees thing kills me. [/snip] settype($balanceTest, float) had no effect [/snip] $diff = round(abs($balanceTest), 2) - round(abs($oldLineArray[16]), 2); Works? Does round convert the string

RE: [PHP] If Column Exists

2008-08-12 Thread Jay Blanchard
[snip] I am working on data migration for one mysql db to another using PHP. How do I check if a particular table has a particular column. If not alter... [/snip] Use DESCRIBE TABLE; -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] More math fun

2008-08-13 Thread Jay Blanchard
[snip] 1.7763568394E-15 is 0. The computer just had a rounding error somewhere. We had this discussion a few weeks ago, the solution being to decide to what accuracy you want the answer. Upto 14 decimal places will give you 0 here!! I thought we had a different discussion a couple of weeks ago

RE: [PHP] On one of my computers, php can't see an external javascriptI included

2008-08-14 Thread Jay Blanchard
[snip] googling1000 schrieb: I have apache and php on Windows. I have 3 computers. A php file is calling an external .js file. Two of my computers have no problem calling a .js file, there's only one machine that doesn't execute functions inside of the .js file. My .php file has the

RE: [PHP] How to submit form via PHP

2008-08-15 Thread Jay Blanchard
[snip] Hello. I'm pretty noob in PHP and would like to know how can I submit some HTML form got via file_get_contents(URL). For example: form name=someform method=post input type=submit /form so how can I submit 'someform' form. Thanks in advance for any suggestions. [/snip] Click 'Submit'

RE: [PHP] How to submit form via PHP

2008-08-15 Thread Jay Blanchard
[snip] On Fri, 2008-08-15 at 13:30 -0500, Jay Blanchard wrote: [snip] Hello. I'm pretty noob in PHP and would like to know how can I submit some HTML form got via file_get_contents(URL). For example: form name=someform method=post input type=submit /form so how can I submit 'someform

RE: [PHP] Semi-ADVERT, not really spam, sorry for it

2008-08-19 Thread Jay Blanchard
[snip] PS - for those that know, I'm back ... with a vengeance. [/snip] That explains why I didn't sleep well last night. :) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Semi-ADVERT, not really spam, sorry for it

2008-08-19 Thread Jay Blanchard
[snip] OFF-LIST [/snip] FAIL. [snip] I've freelanced longer than most these guys have been alive. [/snip] No doubt. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Semi-ADVERT, not really spam, sorry for it

2008-08-19 Thread Jay Blanchard
[snip] But, to drive my point further home, I got underwear older than most of you. :-P [/snip] Uh doodyou might want to do a little shopping once in a while. I think I may be the 2ns oldest on the board and I buy new underwear once a year whether I need it or not. -- PHP General Mailing

RE: [PHP] Re: concatenating with . or ,

2008-08-27 Thread Jay Blanchard
[snip] Bah, who put me in a box with crayons. I'm a scalpel for crying out loud. Anyways, I could wax on forever, but cutting to the point... I think I'm hanging with the wrong bunch of tools. (multiple puns intended ;) [/snip] I, myself, am a hammer [sniperoo] But, I would rather get the

RE: [PHP] Re: concatenating with . or ,

2008-08-27 Thread Jay Blanchard
[snip] My memory may be a bit off but I think tedd is around 4017 (he uses rocks if you can recall) [/snip] I am certainly no less virile. Let's see if anyone can GREP this reference for my age; I was born The Day the Music Died -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

RE: [PHP] Re: concatenating with . or ,

2008-08-27 Thread Jay Blanchard
[snip] 1959 [/snip] Very good! That puts me learning / writing Fortran when you were in diapersassuming you wore diapers of course. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Re: concatenating with . or ,

2008-08-28 Thread Jay Blanchard
[snip] There she was friends and neighbors in all her radiant beauty eating on a raisin, a pomegranate, a bowl of chitlins, two bananas, three Hershey bars, listening to the Grand Old Opry of TV, sipping on a RC coke a cola and signing Does your crewing gum lose it's favor and the bed post

RE: [PHP] Problems sending $_POST vairable to an ASP page

2008-08-28 Thread Jay Blanchard
[snip] I need to send post variables to an ASP page. I have the following code which isn't producing any errors but isn't working either: foreach($_POST['newsletter-group'] as $key = $value){ $_POST['addressbookid'] = $value; $out = POST /signup.ashx; $fp = fsockopen(dmtrk.net, 80, $errno,

RE: [PHP] Problems sending $_POST vairable to an ASP page

2008-08-28 Thread Jay Blanchard
[snip] Unfortunately I don't have curl installed on my server. [/snip] Unless you can open a socket or a curl session you will not be able to post values to a remote page. Curl is your best bet, can it be installed? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

RE: [PHP] Recommendation

2008-09-02 Thread Jay Blanchard
[snip] What about also creating a PHP General List group? Has anyone created Groups on linkedin before? Maybe we could get quite a few people linked thru one? [/snip] I am on LinkedIn and having a group would be very cool. -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

RE: [PHP] Recommendation

2008-09-02 Thread Jay Blanchard
[snip] ... [/snip] Who is going to create the group? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] need to display a number of items based on browser size, before i get to run any js

2008-09-03 Thread Jay Blanchard
[snip] Hi. Today, i've got a chicken-and-egg puzzle for your enjoyment :) [/snip] This question might be more suitable on Evolt's list (www.evolt.org). I realize that there is a snippet of PHP in there but the question is less related to that. -- PHP General Mailing List (http://www.php.net/) To

RE: [PHP] Sending out mass emails

2008-09-04 Thread Jay Blanchard
[snip] We would like to send out mass emails for some of our clients [/snip] Have you searched the list archives for the answers? These points have been covered numerous times. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Evaluating script complexity

2008-09-08 Thread Jay Blanchard
[snip] ...experience... [/snip] Sounds like it is time for you to learn some modeling. Why?, you ask. It is very simple; once a project is broken down into its component parts it will be much easier for you to provide a time estimate for your customer. Additionally, high level overviews (such

RE: [PHP] tedd's back from vacation

2008-09-10 Thread Jay Blanchard
[snip] OK, this is getting ridiculous. I think we need a new PHP list. Something like [EMAIL PROTECTED] sounds about right. [/snip] I knew jealousy would rear its ugly head eventually. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] tedd's back from vacation

2008-09-10 Thread Jay Blanchard
[snip] The greatest team on earth [/snip] That would be THE Louisiana State University Fighting Tigers -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Readdir() question

2008-09-11 Thread Jay Blanchard
[snip] I'm going to make a small browser based file system for ease of small updates that I make frequently on my Website. First of all I want to loop all the files on the same directory and to tell PHP read the same directory, I think I'd need to use the magic constant I think its called, __DIR__

RE: [PHP] Thank you...

2008-09-11 Thread Jay Blanchard
[snip] and the war's in the middle east constitute defense in what way exactly? [/snip] Let's not let this degrade please. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Thank you...

2008-09-11 Thread Jay Blanchard
[snip] what about a generally to shut up. More Respect please. [/snip] I will ask againplease do not let this degrade. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Making array to string

2008-09-17 Thread Jay Blanchard
[snip] Hi, I'm new to PHP. I have an array that I would like to convert into a string. For example, I have array( 0 = Good morning, 1 = Good afternoon, 2 = Good evening, 3 = Good night ); Now I would like to convert the array to something like: Good morning Good afternoon Good evening Good

RE: [PHP] Web Project Leader -- Contract - San Francisco area

2008-09-17 Thread Jay Blanchard
[snip] * Microsoft .NET Framework ( VB.NET or C#), ASP, JSP, Java, VBA, XML, XSLT, relational databases and concepts of object-oriented programming. Anyone else not see PHP in the above? [/snip] Nope. I see 2 P's, but no H -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

RE: [PHP] navigation / location bar

2008-09-30 Thread Jay Blanchard
[snip] a lot of web sites propose a locationbar (something like dynamic map site) to end user when they are browsing the website. usually i looks like that: Home Products Software Operating System Windows XP User can come back to a previous parent node by just clicking on the name, for

RE: [PHP] Wanted PHP Developers LogicManse

2008-09-30 Thread Jay Blanchard
[snip] Must resist fist of death [/snip] Props for the Dilbert reference -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Robert Cummings

2008-09-30 Thread Jay Blanchard
[snip] [/snip] Congrats Cummings Clan! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] mysql_query() vs query_database()

2008-10-01 Thread Jay Blanchard
[snip] RE: mysql_query() vs query_database() What is the differences between mysql_query and query_database? Are both compatible with PHP 5 and MySQL 5? Is one faster than the other? [/snip] query_database appears to be someone's function for generic database queries and is not a part of the

[PHP] Project Tracking / Charting Tool OT

2008-10-09 Thread Jay Blanchard
Does anyone here know of a project tracking tool that will allow me to import multiple project files into one project tracking too w/Gantt charts, resources, etc. ? An added bonus would be true collaboration where updates to a single project are reflected in the larger project tracking entity. I

RE: [PHP] New to PHP

2008-10-13 Thread Jay Blanchard
[snip] I don't want to get into a bottom vs top posting debate. Just know that some of us prefer top posting. There's no right/wrong answer to this. [/snip] Consider how this would read if I posted above your entry. But I have trimmed quite nicely thank you! :) -- PHP General Mailing List

RE: [PHP] New to this group....a continuation

2008-10-14 Thread Jay Blanchard
[snip] ... oh and we're all a bunch of pirates, except for Tedd ... he's a retired pirate. [/snip] I thought he was semi-retired, or was it re-tread? Meh. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] PHP Dev Facts

2008-10-17 Thread Jay Blanchard
[snip] *Procedural or OOP?* Mix - depends on the job to be done *Dev OS* SUSe Linux *Dev PHP Version* 5.n *Live Server OS* SUSe Linux *Live Server PHP Version* 5.n *Which HTTP Server Software (+version)?* Apache 2.n *IDE / Dev Environment* Eclipse / Zend *Preferred Framework(s)?* none *Do you Unit

RE: [PHP] Re: PHP Dev Facts

2008-10-17 Thread Jay Blanchard
[snip] just a quick note to say I'll compile all this into something more meaningful and publish later on tonight :-) nice to see so many responses. [/snip] It's Friday night, shouldn't you be going to the pub instead? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

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