RE: [PHP] navigation

2007-01-27 Thread Jay Blanchard
[snip] How to creat the effect of the explorers back and forward buttons in php? [/snip] Since PHP is server side you would have to use Javascript to do this. See http://www.comptechdoc.org/independent/web/cgi/javamanual/javahistory.ht ml -- PHP General Mailing List (http://www.php.net/) To

RE: [PHP] Create ACH Origination file with PHP

2007-01-27 Thread Jay Blanchard
[snip] Does anyone know of a script that can create an ACH origination file with PHP?[/snip] How do you want to input amounts, routing numbers, and account numbers? Have you checked out the NACHA file specifications? http://www.nacha.org Do you need to perform file encryption before you

RE: [PHP] Create ACH Origination file with PHP

2007-01-27 Thread Jay Blanchard
[snip] I am familiar with the NACHA file format, and have the specifications, I just would rather not write the file formatter and output if someone else has done it already or could do it more easily than I. Do you have experience in this? [/snip] Ah. Yes I do have experience in this and have

[PHP] memory_limit Setting?

2007-01-26 Thread Jay Paulson
Hi everyone, I¹m trying to upload a 25MB file via PHP and I¹m setting the memory limit way high so I don¹t get a fatal error from php (the error is below). What I find really odd about this is that the error message says that PHP tried to allocate almost 54MB. First question is why is PHP

RE: [PHP] Can a class instance a property of another class

2007-01-26 Thread Jay Blanchard
[snip] I would like to have a class instance be the property of another class, like can be done in other languages. For example: I would like to have a Connections class which contains all of the database connection logic and query results. There are advantages to having this type of

RE: [PHP] Can a class instance a property of another class

2007-01-26 Thread Jay Blanchard
[snip] This syntax fails, so I know this isn't right, but I hope you get the idea. Can it be done? [/snip] Extends? class new_connection extends connection {} [/snip again] I read too fast A member function can be referenced by another class as long as the function is public. You would

RE: [PHP] Package php code

2007-01-24 Thread Jay Blanchard
[snip] Is there any similar way to package PHP software as Java with a jar file or similar? I have never seen it, because then would probably Smarty for example be packaged already :-) This question came out of the blue when I was thinking about how to deliver some plugins to a customer. [/snip]

RE: [PHP] no database selected

2007-01-23 Thread Jay Blanchard
[snip] I am using this to connect remotely but I get a no database selected error. The table is contacts but there is not a parameter for database name according to the documentation. How do I delect my database when conencting this way? [/snip]

Re: [PHP] [HELP] Fatal error when uploading large files!

2007-01-23 Thread Jay Paulson
Hi everyone, Hopefully you all can help! I¹m at a loss as to what to do next. I¹m running PHP 5.1.2 with Apache 2.0.55 on RedHat ES4 and I keep getting the following PHP error when trying to upload a larger file. I have AllowOverride turned on in the httpd.conf file so my .htaccess file

Re: [PHP] [HELP] Fatal error when uploading large files!

2007-01-23 Thread Jay Paulson
Hi everyone, Hopefully you all can help! I¹m at a loss as to what to do next. I¹m running PHP 5.1.2 with Apache 2.0.55 on RedHat ES4 and I keep getting the following PHP error when trying to upload a larger file. I have AllowOverride turned on in the httpd.conf file so my .htaccess file

RE: [PHP] OT - Leaving

2007-01-23 Thread Jay Blanchard
[snip] ...damned sappy stuff... [/snip] Later gator, we're going to miss your pseudo-Cajun self! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Splitting long text

2007-01-23 Thread Jay Blanchard
[snip] I have a requirement to take a large amount of text, a story submitted to a competition, and split into displayable chunks of 600 words each. I'd like some feedback on the best way to this. [/snip] There are many ways to skin this cat Skip but you can start with the basics of using

RE: [PHP] smsSend

2007-01-22 Thread Jay Blanchard
[snip] Hi guys, I´m beginner in php, so I need some help. I have to make a script to send SMS to moviles phones, can you give some ideas how to make it please... Thank you [/snip] SMS can be sent to mobiles as an email. Most cellphone providers offer a gateway for this. See:

[PHP] [HELP] Fatal error when uploading large files!

2007-01-22 Thread Jay Paulson
Hi everyone, Hopefully you all can help! I¹m at a loss as to what to do next. I¹m running PHP 5.1.2 with Apache 2.0.55 on RedHat ES4 and I keep getting the following PHP error when trying to upload a larger file. I have AllowOverride turned on in the httpd.conf file so my .htaccess file is

RE: [PHP] Request for...

2007-01-20 Thread Jay Blanchard
[snip] Since this is a mailing list for web developers [/snip] This is a mailing list for PHP developers who might also do web development. Evolt.org has a great list for w e b d e v e l o p e r s -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

RE: [PHP] Request for...

2007-01-20 Thread Jay Blanchard
[snip] Since this is a mailing list for web developers, I thought I might as well post an o f f t o p i c request. Does anyone know of any website where I can get a exe or jar sitemap generating software? Particularly not GsiteCrawler as it uses too much system resources. A java applet would be

RE: [PHP] most powerful php editor

2007-01-20 Thread Jay Blanchard
[snip] i'd like to ask something maybe commonly asked here. what is the most powerful php editor? [/snip] What is power when regarding a PHP editor? My team uses Eclipse but we are all comfortable with VI or PICO. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

RE: [PHP] Month display calendar

2007-01-19 Thread Jay Blanchard
[snip] Can anyone please show me calendar scripts to make a calendar with a monthly display as shown in http://www.easyphpcalendar.com/ ? [/snip] Have you STFW or RTFM? There is a truckload of PHP code on the web that you can review, dissect, and learn from. -- PHP General Mailing List

[PHP] Memory Limit?

2007-01-19 Thread Jay Paulson
the memory_usage() to see what the memory limit is set to and I get the following: memory usage: 37512 I really don¹t know why I¹m getting the Fatal error. Do I need to do something else that I just don¹t know about? Thanks! Jay

RE: [PHP] Memory Limit?

2007-01-19 Thread Jay Blanchard
[snip] I really don¹t know why I¹m getting the Fatal error. Do I need to do something else that I just don¹t know about? [/snip] Make sure your upload form and your php.ini reflect the new upper limit. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

RE: [PHP] What makes a PHP expert

2007-01-18 Thread Jay Blanchard
[snip] I often see job ads asking for a PHP expert and was wandering what you all thought makes a PHP programmer into an expert. what would you mark out as the key skills that distinguishes an expert from the ordinary i.e. OOP mastery, regular expressions etc. [/snip] First I would consider

RE: [PHP] One last try at this!

2007-01-17 Thread Jay Blanchard
[snip] if(empty($orgname)) { $formerror['orgname'] = Optional; } elseif($result = ValidateString($orgname, 2)) { $formerror['orgname'] = $result; } if(empty($website)) { $formerror['website'] = Optional; } if($result = ValidateString($website, 2)) { $formerror['website'] = $result; }

RE: [PHP] One last try at this!

2007-01-17 Thread Jay Blanchard
[snip] The second condition of each if statement does not contain equality checking, it sets the $result to ValidateString($event, 2). That should be if($result == ValidateString($event, 2)) or if($result === ValidateString($event, 2)) What if the intension was to fail if the result of

RE: [PHP] Getting domain out of a URL

2007-01-17 Thread Jay Blanchard
[snip] I receive posts from an open moderated forum that need to be filtered for urls. I've successfully managed to trap any entires that use 'http://' 'www.' with the standard '.com' '.org', '.net' endings. What I need to do is to strip the prefix part ('http:// or http://www. or 'www') and

RE: [PHP] dynamic lists

2007-01-17 Thread Jay Blanchard
[snip] By dynamic drop list I mean the type where the options contained in the subsequent list depend on what was picked in the previous list without clicking submit. [/snip] PHP is server side, you need to do this with AJAX or Javascript -- PHP General Mailing List (http://www.php.net/) To

RE: [PHP] Getting domain out of a URL

2007-01-17 Thread Jay Blanchard
[snip] Something along the lines of: ?php $boom[1] = ranchy.stuff.com and other junk; $input = $boom[1]; $out = array_slice($input, 0, 1); ? Part of my problem, I'm beginning to realize, is that the array '$boom[1]' contains only one element. Is there a similar string function I could use

RE: [PHP] classes and objects: php5. The Basics

2007-01-16 Thread Jay Blanchard
[snip] http://uk.php.net/manual/en/language.oop5.basic.php The top example has the code: A::foo(); even though foo is not declared static in its class. How does it get called statically without being declared static? [/snip] foo() is a function and would not be static, it can be public

RE: [PHP] DNS lookup w/ php

2007-01-15 Thread Jay Blanchard
[snip] If I wanted to determine whether a domain has set up mx records, how could I accomplish this with PHP? [/snip] RTFM http://us3.php.net/manual/en/function.dns-get-mx.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] A little code snippet I wanted to share

2006-12-20 Thread Jay Blanchard
if(('12/24' $myDate) ('12/26' $myDate) (TRUE == $belief)){ echo Merry Christmas!\n; } elseif(TRUE == $variationOnATheme){ echo Happy Holidays!\n; } elseif(TRUE == $liberal) { echo Joyous ChrisMaHanuKwanzica!\n; } else { echo Bah Humbug!\n; } I probably could have used a switch

RE: [PHP] LDAP Active Directory Authentication

2006-12-05 Thread Jay Blanchard
[snip] I am going to need to build LDAP and AD modules for a project that I'm working on. Could any of you who have delt with PHP/LDAP/AD point me in the direction of some decent resources/papers/books? [/snip] http://www.php.net/ldap -- PHP General Mailing List (http://www.php.net/) To

RE: [PHP] Distinguishing between a mouse click and a refresh?

2006-12-04 Thread Jay Blanchard
[snip] Is there any way for PHP to know whether it is being called due to a browser refresh versus a mouse click? I think the answer is no but I just want to be sure. Thanks. [/snip] Not unless you specifically capture and send a JavaScript onClick event. A mouse click typically takes you

RE: [PHP] counting clicks

2006-11-29 Thread Jay Blanchard
[snip] Anyone got a script so I can count clicks on adverts. Doesn't have tosve to myqsl or anything just a text file will do. [/snip] ?php if(yes == $adClicked){ $adClickCountFile = fopen(countClick.txt, w); $getCount = fgets($adClickCountFile, 4096); $newCount = $getCount + 1;

RE: [PHP] counting clicks

2006-11-29 Thread Jay Blanchard
[snip] This has a race condition where a busy server, or even a not-so-busy one where 2 people happen to click at the same time, at least one of them will be missed, at best. There's also a distinct possiblity of the counter file getting completely trashed, depending on the OS and its underlying

RE: [PHP] Excel problem

2006-11-16 Thread Jay Blanchard
[snip] please advice. [/snip] Have you read the documentation? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Microsoft Partners With Zend

2006-11-01 Thread Jay Blanchard
[snip] I guess that's sorta what I'm afraid of... PHP# (like the did to Java - J++ - C# ) Don't get me wrong. C# is a great language (probably one of the few things that M$ did right), and I'd LOVE to use a real IDE like Visual Studio to dev in... But I'm also terrified they'll pervert

RE: [PHP] Is there such a thing?

2006-10-31 Thread Jay Blanchard
[snip] The page isn't about compiling PHP source into a binary. It's about creating a method of using web applications ( php ) without the help of a seperate web-server. [/snip] That is an oxymoron, a web app w/o a web-server? The items mentioned have built-in webservers which is as close to not

RE: [PHP] Probably a dumb question but...

2006-10-31 Thread Jay Blanchard
[snip] I've just installed PHP 4.4.4 with CLI disabled and CGI enabled. With CLI I can find the PHP executable in $prefix/bin/php but with CGI I can't find it. I need the path to the PHP executable so I can install suPHP but $prefix/bin/php no longer exists and all I have in $prefix/bin is

RE: [PHP] Is there such a thing?

2006-10-30 Thread Jay Blanchard
[snip] http://www.evilbitz.com/2006/10/27/local-php-standalone-binaries-2/ http://gtk.php.net/ [/snip] http://www.priadoblender.com/index.php?layout=maincslot_1=2 is another 'option' -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Telemarketing Script/Tracking Application

2006-10-19 Thread Jay Blanchard
Is anyone aware of a PHP/MySQL app that would be used by telemarketing staff to track calls, do follow-ups, allow scripting, etc.? We could write something in house but we are pressed for time. I have been poking around the web this morning, but have not found much. TVMIA! -- PHP General Mailing

RE: [PHP] Re: Understanding persistent connections with oci8

2006-10-13 Thread Bauer, Jay W
-Original Message- From: Richard Lynch [mailto:[EMAIL PROTECTED] Sent: Thursday, October 12, 2006 5:50 PM To: Bauer, Jay W Cc: php-general@lists.php.net; Mendonce, Kiran (STSD); Nikiel, Carsten; Rai, Moni (GSE WTEC Cupertino); Rieslund, Mikael; Bauer, Jay W Subject: RE: [PHP] Re

RE: [PHP] Re: Understanding persistent connections with oci8

2006-10-13 Thread Bauer, Jay W
-Original Message- From: Richard Lynch [mailto:[EMAIL PROTECTED] Sent: Thursday, October 12, 2006 5:56 PM To: Bauer, Jay W Cc: Roman Neuhauser; php-general@lists.php.net; Mendonce, Kiran (STSD); Nikiel, Carsten; Rai, Moni (GSE WTEC Cupertino); Rieslund, Mikael; Bauer, Jay W Subject: RE

RE: [PHP] Re: Understanding persistent connections with oci8

2006-10-12 Thread Bauer, Jay W
this 10 sec timeout being used is for testing to see the behavior, I would expect that normally the time, if not -1 and infinite would be more along the line of hours in the real world. Thanks and regards, Jay -Original Message- From: Roman Neuhauser [mailto:[EMAIL PROTECTED] Sent

RE: [PHP] Re: Understanding persistent connections with oci8

2006-10-12 Thread Bauer, Jay W
it works needs to be clearly documented so it is clear to anyone using it how it should behave. Thanks again for your thoughtful and thought provoking discussion. Regards, Jay -Original Message- From: Richard Lynch [mailto:[EMAIL PROTECTED] Sent: Thursday, October 12, 2006 12:41 PM

RE: [PHP] Re: Understanding persistent connections with oci8

2006-10-12 Thread Bauer, Jay W
to use for this, or should there be something, may outside of php used. And if the latter, is there any reason to even have the oci8.persistent_timeout. I need to spend some cycle talking to the php maintainers to see if we can come to some understanding. Thanks and regards, Jay -Original

RE: [PHP] Re: Understanding persistent connections with oci8

2006-10-11 Thread Bauer, Jay W
-oracle-db request which will terminate the persistent connections. The only other way has been to restart apache. And I can redo the test with just one server and one connection and explicitly terminate the persistent connection by making a new non-oracle-db request. Thanks and regards, Jay

RE: [PHP] Re: Understanding persistent connections with oci8

2006-10-11 Thread Bauer, Jay W
Wed Oct 11 20:33:35 IST 2006 /user/jwbaunetstat -an|grep 1521 I'll put this and the data from yesterday together and submit it to bugs.php.net. Best regards, Jay -Original Message- From: Bauer, Jay W Sent: Wednesday, October 11, 2006 9:46 AM To: [EMAIL PROTECTED]; 'php-general

RE: [PHP] Re: Understanding persistent connections with oci8

2006-10-11 Thread Bauer, Jay W
. Thanks and regards, Jay -Original Message- From: Richard Lynch [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 11, 2006 3:44 PM To: Bauer, Jay W Cc: php-general@lists.php.net; Bauer, Jay W; Mendonce, Kiran (STSD); Nikiel, Carsten; Rai, Moni (GSE WTEC Cupertino); Rieslund, Mikael

RE: [PHP] Re: Understanding persistent connections with oci8

2006-10-10 Thread Bauer, Jay W
Hello Richard, First let me introduce myself, I'm Jay Bauer and have been supporting the Apache webserver for the last couple of years and have been doing networking support for over 15 years. I want to thank you for explaining why the folks replying to our lab's enquiries don't think

RE: [PHP] Breaking lines

2006-10-03 Thread Jay Blanchard
[snip] How can i make the line break ? [/snip] http://www.php.net/nl2br -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Coding Style Question...

2006-10-02 Thread Jay Blanchard
[snip] What do you think? [/snip] I think I'd like an ice cold beer. I code PHP like I code C++, heavily commented with code designed to fit the needs of the application. There is a thing in PEAR concerning style (you can Google it pretty easily) and you will as many styles as you do PHP

[PHP] reading a remote directory

2006-09-26 Thread Jay Blanchard
I have to read a directory (on a windows machine) from another box (a linux machine) and I thought that I could set the handle to the IP address of the windows box, but that does not work. Do I have to open a socket or is there another way? Thanks! -- PHP General Mailing List

RE: [PHP] Help converting C to PHP

2006-09-22 Thread Jay Blanchard
[snip] Codegolf... heh.. nice little twist. [/snip] At least we weren't asked to help someone write his homework. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Long Shot Question

2006-09-19 Thread Jay Blanchard
[snip] This seems like a somewhat standard calculation for loans and interest bearing accounts. Does anyone know how to calculate the graduation factor? I've been able to figure out it's based off the loan term, loan balance, and initial interest rate. [/snip] It is called amortization ... --

RE: [PHP] Long Shot Question

2006-09-19 Thread Jay Blanchard
[snip] [snip] This seems like a somewhat standard calculation for loans and interest bearing accounts. Does anyone know how to calculate the graduation factor? I've been able to figure out it's based off the loan term, loan balance, and initial interest rate.

RE: [PHP] Frustrated trying to get help from your site

2006-09-18 Thread Jay Blanchard
[snip] I am a programmer who is fairly new to PHP, and I had a problem trying to make changes to existing code. I tried to look up any existing documentation on your site, and after an extensive search, I finally found someone who has the same problem. The only problem is that he said something

RE: [PHP] Reverse of date(w)

2006-09-18 Thread Jay Blanchard
[snip] I'm looking for something that will convert a the opposite of the date (w) function. In other words, if I have the number 3, I would like it to return Wednesday. Is there such a beast out there besides writing a switch or array or something? [/snip] Perhaps http://www.php.net/idate

[PHP] USB Question Not PHP Related, so if you don't want to read this you don't have to

2006-09-13 Thread Jay Blanchard
I generally would not do this, but I have an urgent need and this group has seen everything; I need two USB ports on a system to have the same channel. I continue to STFW but have not come upon something like this yet. The application is for softphones in a call center environment, the headsets to

RE: [PHP] Re: How could I make the browser to send a command to a cash register...

2006-09-11 Thread Jay Blanchard
[snip] It's a RS232 serial register. PHP, running at the server side, could talk to the hardware at the client side? Or is it ActiveX? [/snip] You're correct, server-side cannot perform a client-side task. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

RE: [PHP] Data validation at the db level

2006-09-07 Thread Jay Blanchard
[snip] Hey everyone, Is there any work being done in the database world for data validation at the db level? It would be cool to just define a field as being an email address (of length nn) instead of saying a TEXT field (of length nn) and validating it in the application layer. Same goes for

RE: [PHP] Data validation at the db level

2006-09-07 Thread Jay Blanchard
[snip] Jay Blanchard mailto:[EMAIL PROTECTED] on Thursday, September 07, 2006 5:16 PM said: There are all sorts of ways to validate data at the DB level and this is a PHP question how? Just because! [/snip] Oil changes to the right -- PHP General Mailing List (http://www.php.net

RE: [PHP] Formating a Double

2006-09-06 Thread Jay Blanchard
[snip] I am trying to format a double to use thousands seperators and such. number_format does not appear to be working properly for this. My guess is cause I am trying to format a double rather than a string. Is there anything out there that will allow me to format a double to include a comma as

RE: [PHP] Free Shopping Carts

2006-08-31 Thread Jay Blanchard
[snip] Actually we , customer and myself as admin, ran into: New Installation Please customize the new installation with the following options: Import Catalog Database: Fatal error: Call to undefined function osc_draw_checkbox_field() in /path/to/shop/install/templates/pages/install.php

[PHP] Error Handling Library?

2006-08-31 Thread Jay Paulson
I've been doing some research and was wondering if anyone out there has written a library for error handling? I haven't found anything as of yet but would love to hear suggestions! Thanks! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] remove SimpleXML nodes

2006-08-31 Thread Jay Paulson
So I want to do... $xmlDatabase = new SimpleXMLElement($myXML); foreach ($xmlDatabase as $oneTable) { if ($oneTable['name'] == 'two') { /// HERE I WANT TO DELETE THE $oneTable NODE unset($oneTable); // -- and this doesn't work... } } I tried to do the

RE: [PHP] what's all the about then?

2006-08-30 Thread Jay Blanchard
[snip] There is a site which has interesting behaviour. http://myurl.co.uk/index.php?p=latest when I click the links the variable and the end changes changing the page. http://myurl.co.uk/index.php?p=news Can someone tell me (i) how is this achived (ii) what is the technique called (iii) does

RE: [PHP] Free Shopping Carts

2006-08-30 Thread Jay Blanchard
[snip] Are there free shopping carts that would work with PHP 5.0.X + and MySQL 4.1.X + and /or PostgresQL 8.1+ ? [/snip] Yes. You do have access to Google, right? http://www.google.com/search?hl=enlr=q=free+open+source+shopping+cart+ php+5+mysql -- PHP

RE: [PHP] switch it button

2006-08-23 Thread Jay Blanchard
[snip] At the moment I have this, but I want to change it to one switch button a href=?php echo $_SERVER['PHP_SELF'];??session_switch=1switch it/a. I have tried but keep getting wrapped up in nested if-else statements. Does anyone know how to make an efficient one button on-off switch.

RE: [PHP] php-general mailing list active?

2006-08-22 Thread Jay Blanchard
[snip] Would someone kindly let me know if there is activity on [EMAIL PROTECTED] I have not gotten posts for a few days now, and I'm having no luck connecting to the help, owner or admin addresses. [/snip] Yes, it is working -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

RE: [PHP] Creating custom superglobals

2006-08-14 Thread Jay Blanchard
[snip] Does the PHP environment (5.1.4) provide a way to define some custom variables as a superglobal? It would be useful for saving certain site preferences and settings that must be referred in many variables and classes, without every time writing global keyword at the beginning of a

RE: [PHP] New Large Scale Project.

2006-08-13 Thread Jay Blanchard
[snip] My other problem is even though I'm confident coding I find design very difficult I've a good idea of how the website would work but only in general terms. [/snip] Have you ever sat down wit paper and pencil (or Excel or any number of other tools) and attempted to flowchart a project? It

RE: [PHP] Chicago PHP Conference

2006-08-13 Thread Jay Blanchard
[snip] I'm in the pre-planning phase of organizing a PHP Conference in Chicago. [/snip] Capital idea Richard, thanks for making this more formal. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] List Meeting NNOT

2006-08-10 Thread Jay Blanchard
[snip] It's still a bit of a drive when you live in Montreal and don't have a car. About an 18 hour drive, plus a few hours for bus stops and border crossings. [/snip] That is why the Wright Brothers did what they did. ;) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

RE: [PHP] Job Posting

2006-08-09 Thread Jay Blanchard
[snip] Is it appropriate to post jobs on this list? I have many PHP Developer positions available. [/snip] Sure, or a link -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] LAMP Developer Needed - Indianapolis

2006-08-09 Thread Jay Blanchard
[snip] Brent Meshier wrote: snip Qualified candidates should e-mail their resume (Word, PDF, or Plain text preferred) to [EMAIL PROTECTED] Where should non-qualified candidates e-mail their resume? [/snip] To me. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

RE: [PHP] LAMP Developer Needed - Indianapolis

2006-08-09 Thread Jay Blanchard
[snip] Qualified candidates should e-mail their resume (Word, PDF, or Plain text preferred) to [EMAIL PROTECTED] Where should non-qualified candidates e-mail their resume? [/snip] To me. Hahah, your post arrived before mine. [/snip] What is scary is that we are all on the same

RE: [PHP] Job Posting

2006-08-09 Thread Jay Blanchard
[snip] Sure, or a link not that Jay's up for doing any work anymore - he's a director these days ;-) Ah, so that's where Microsoft cronies go to die. :-p [/snip] Yep...they make them management. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] List Meeting NNOT

2006-08-09 Thread Jay Blanchard
Here is a thought that a couple of us have shared off-list; why don't we list denizens plan a get together? A face-to-face with the good, the bad and the ugly. A mano y' mano curly brace holy war. Beers and meat. The whole 9.2 Mb's. So, what say you? Shall we start a more formal process? Set a

RE: [PHP] List Meeting NNOT

2006-08-09 Thread Jay Blanchard
[snip] Isn't that what the conferences are for??? I'm happy to host a small get-together in Chicago... I'll throw in a couple kegs of beer and some munchies at Uncommon Ground where I work. :-) http://uncommonground.com/ [/snip] Yes, but not everyone can get to or goes to conferences. And this

RE: [PHP] List Meeting NNOT

2006-08-09 Thread Jay Blanchard
[snip] [snip] Isn't that what the conferences are for??? I'm happy to host a small get-together in Chicago... I'll throw in a couple kegs of beer and some munchies at Uncommon Ground where I work. :-) http://uncommonground.com/ [/snip] Yes, but not everyone can get to or goes to

RE: [PHP] Declaring variables from the url

2006-08-07 Thread Jay Blanchard
[snip] http://www.domain.com/index.php?var=1 And then, to use the variable, all I have to do is use it in the script, like so: echo This is the value of the variable: . $var; [/snip] echo $_GET['var']; -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

RE: [PHP] php/ajax..

2006-08-07 Thread Jay Blanchard
[snip] will php allow a user to enter field on a form, and compute aresult based on the field, without having to reload the entire form, or will i need ajax... [/snip] You will only need JavaScript. Remember, JavaScript is client-side, PHP is server-side. -- PHP General Mailing List

[PHP] OT promotion candidates needed

2006-08-04 Thread Jay Blanchard
Good news/kinda' bad news (but not really); I am proud to say that I have been promoted to Director of IT in my little corner of the world. This creates an immediate opening for a creative applications developer with PHP, MySQL, Oracle, the usual web skills/experience in the San Antonio, Texas

RE: [PHP] Newbie Form Question

2006-08-04 Thread Jay Blanchard
[snip] I was wondering how simple it would be to set up a script to provide a subscribe/unsubscribe form for a list serve. The form would send an email to the subscribe address or unsubscribe address as selected. [/snip] I wondered about that the other day myself and came to the conclusion that

RE: [PHP] AES client side

2006-07-31 Thread Jay Blanchard
[snip] I need to implement AES decryption algorythm on client side (in browser). I tried javascript but it is too slow. Does anybody have others ideas how to decrypt data transfered by from server to client in browser? [/snip] You need to employ a Secure Sockets Layer. -- PHP General Mailing

RE: [PHP] AES client side

2006-07-31 Thread Jay Blanchard
[snip] Just playing devil's advocate here...But I believe that if implemented properly, encryption/decryption on the client could be secure, for example a diffie-hellman key exchange with AJAX, followed by encryption. [/snip] Doesn't matter the key, you must use SSL to encrypt from client to

RE: [PHP] AES client side

2006-07-31 Thread Jay Blanchard
[snip] Why *must* you use SSL? Again, devil's advocate here (SSL is probably much better) but that doesn't mean that you can't use some crazy JS and PHP to implement some alternative encryption technique. (Say a symmetric algorithm that isn't implemented in any standard SSL implementations, or

RE: [PHP] AES client side

2006-07-31 Thread Jay Blanchard
[snip] Jay Blanchard wrote: This still leaves any Javascript exposed, doesn't it? Yes, but that shouldn't matter. The algorithms for RSA, AES, etc, etc are all publicly available, why bother hiding their JavaScript implementations? Only the data would be encrypted. [/snip] So, you're

RE: [PHP] AES client side

2006-07-31 Thread Jay Blanchard
[snip] There's no hiding. You could use a secure key exchange mechanism, such as Diffie-Hellman. Diffie-Hellman is used to generate a shared key between two hosts (say A and B) such that each host knows the key, but any third party listening in on the information is unable to trivially

RE: [PHP] call a javascript within php

2006-07-30 Thread Jay Blanchard
[snip] How can I call a JavaScript inside php? [/snip] Echo it out. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] pop up save dialog box

2006-07-26 Thread Jay Blanchard
[snip] I have code below which save MYSQL to csv file. I am using ADODB library to do this. The saving MYSQL to csv file is ok . However i need to allow the the user to enter file name for csv file. Anybody have any ideas how to do this? Thanks [/snip] If you want a true pop-up you

[PHP] card scanners and PHP

2006-07-26 Thread Jay Blanchard
For our retail application (written in PHP) we are looking for a class that will work with a scanner to scan a driver's license or business card and populate the forms properly with that data. I have found a product (IDScan) that may work with PHP, but I was hoping to find others to compare it to.

RE: [PHP] card scanners and PHP

2006-07-26 Thread Jay Blanchard
[snip] Do you mean a magnetic stripe reader? Information is scattered all over business cards. [/snip] Most states do not allow access to their mag stripes, and one company that I have found so far uses what is essentially an OCR scanner and a software called IDScan to parse the data. They even

RE: [PHP] Checking $_POST var and stripping

2006-07-24 Thread Jay Blanchard
[snip] Can anyone help with this ? its checking the $_POST and seeing if any of the items begin with answer_, if the do it should remove it from the beginning and place it into $value_new.. does not seem to work though... foreach($_POST as $qid = $value) { $findme = 'answer_';

RE: [PHP] select option and php

2006-07-24 Thread Jay Blanchard
[snip] It will produce the html tag as shown below: script language=JavaScript function gotoPage(){ var urlpath = ../listflag.php?start=pageID=+3; document.forms['listfrm'].method = 'post'; document.forms['listfrm'].action = urlpath; document.forms['listfrm'].submit; } /script form

RE: [PHP] GD to database directly

2006-07-19 Thread Jay Blanchard
[snip] ... some research ... [/snip] So, am I to assume that this issue about storing images in databases is dead? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Open Source mailinglist?

2006-07-19 Thread Jay Blanchard
[snip] I hope you don't kill me out there, but I'm totally out of luck here. I've been doing some research on Open Source questions because I want a product of mine to become better in any ways (yes, it's written in PHP and yes, it's Open Source). Because of not doing advertising here, I'll

RE: [PHP] GD to database directly

2006-07-18 Thread Jay Blanchard
[snip] Kevin, you have more than once pointed out using a RAW format for operating the data system, what exactly do you mean? The database becomes the OS? If so, how do you set that up? It is something that I am not totally familiar with. [/snip] I did some research and went back to Kevin's

RE: [PHP] Name in HTML input

2006-07-18 Thread Jay Blanchard
[snip] Thanks for your info. I am new in PHP , how to remove the the space and '(',')' ? [/snip] Use the delete key. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Sort Array

2006-07-18 Thread Jay Blanchard
[snip] I have the array below : How to sort the array by Model and Country? Thanks array( TBA0123456 = array(Country=Singapore,Model=WS8234), TBA0123458 = array(Country=Indonesia,Model=WS2234), TBA0123459 = array(Country=Vietnam,Model=WS7234), TBA0123452 =

RE: [PHP] Sort Array

2006-07-18 Thread Jay Blanchard
[snip] Jay Blanchard wrote: [snip] I have the array below : How to sort the array by Model and Country? Thanks array( TBA0123456 = array(Country=Singapore,Model=WS8234), TBA0123458 = array(Country=Indonesia,Model=WS2234), TBA0123459 = array(Country=Vietnam,Model=WS7234

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