php-general Digest 12 Jul 2011 15:48:12 -0000 Issue 7398

2011-07-12 Thread php-general-digest-help
php-general Digest 12 Jul 2011 15:48:12 - Issue 7398 Topics (messages 314005 through 314019): Re: using wget in shell for download(snort) 314005 by: Negin Nickparsa 314006 by: Negin Nickparsa 314007 by: Richard Quadling 314009 by: Negin Nickparsa

Re: [PHP] vend-bot?

2011-07-12 Thread Stuart Dallas
On Tue, Jul 12, 2011 at 2:40 PM, Kirk Bailey kbai...@howlermonkey.netwrote: On 7/11/2011 4:00 AM, Stuart Dallas wrote: Why do you insist on not including the list when replying to me?? I was attempting to be polite. Recall that I was criticizing your response, and I thought it was simply

[PHP] Serveside Printing w/ PHP

2011-07-12 Thread Marc Guay
Hi folks, I'm working on a project that will only be run locally on a WAMP server. A mobile browser/app will call a certain page which should silently trigger a print job to a printer connected to the printer. Does anyone have advice on how to accomplish this? I've seen implementations

[PHP] Re: Serveside Printing w/ PHP

2011-07-12 Thread Marc Guay
Bonus feature: The server is running Windows 7. I suspect the crickets are going to win this one. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Serveside Printing w/ PHP

2011-07-12 Thread Ken Robinson
At 02:06 PM 7/12/2011, Marc Guay wrote: Bonus feature: The server is running Windows 7. I suspect the crickets are going to win this one. Take a look at http://www.php.net/printer -- this might be what you're looking for. Ken -- PHP General Mailing List (http://www.php.net/) To

[PHP] A Question On Web Graphics

2011-07-12 Thread Thomas Dineen
Gentle People: Sorry if this appears off topic but I am not sure where to post the question. Please do not get mad, just recommend a better venue! Currently I am quite experienced with C and learning C++ but I have never written graphical type applications in either! Can you

Re: [PHP] Re: Serveside Printing w/ PHP

2011-07-12 Thread Marc Guay
Take a look at http://www.php.net/printer -- this might be what you're looking for. Hi Ken, Thanks for trying but I've been down that road and from my understanding that PECL extension is really out of date and unsupported (the page that hosts it doesn't even have a downloadable DLL). Also

Re: [PHP] A Question On Web Graphics

2011-07-12 Thread Chris Stinemetz
  Also I have successfully experimented with Apache and PHP but have not yet identified graphics applications for this venue either! Ideas? You may want to look into PHP:GD link to manual: http://php.net/manual/en/book.image.php HTH, Chris -- PHP General Mailing List

Re: [PHP] A Question On Web Graphics

2011-07-12 Thread Mike Mackintosh
On Jul 12, 2011, at 3:10 PM, Thomas Dineen wrote: Gentle People: Sorry if this appears off topic but I am not sure where to post the question. Please do not get mad, just recommend a better venue! Currently I am quite experienced with C and learning C++ but I have never written

[PHP] Pear windows installation paths.

2011-07-12 Thread Plamen Ivanov
Running PHP 5.3.6 Windows VC9 zipped binaries (windows.php.net). I got the following messages after running 'pear' in the command line: PHP Parser error: syntax error, unepxected '@' in C:\php\PEAR\pearcmd.php on line 28 PHP Parser error: syntax error, unepxected '@' in C:\php\PEAR\pearcmd.php

[PHP] Mangling URLs for RewriteRule parsing

2011-07-12 Thread Daevid Vincent
I'm fumbling trying to think of a nice easy way to mangle my URLs within PHP for SEO and apache's RewriteRules magic. Given a basic rule like this: RewriteCond ^/foo/movie/genre/([-a-z\|]*)_([-a-z\|]*)/([0-9]+)/videos.html$ RewriteRule

[PHP] PHP control structure

2011-07-12 Thread Chris Stinemetz
Hey all, I would like to add an if statement to the following function so that the value 1 is assigned corporate and the value is 2 assign standard to it. Would you show me an example on adding it to the below function? If there is a better way to reassign the value please share. Thank you,