php-general Digest 9 May 2011 14:11:17 -0000 Issue 7304

2011-05-09 Thread php-general-digest-help
php-general Digest 9 May 2011 14:11:17 - Issue 7304 Topics (messages 312725 through 312729): Re: How to DUMP $_POST parameters to a log file? Very useful and missing in the php.net 312725 by: Peter Lind 312726 by: Eli Orr (Office) Re: semaphores are broken 312727

php-general Digest 10 May 2011 02:33:58 -0000 Issue 7305

2011-05-09 Thread php-general-digest-help
php-general Digest 10 May 2011 02:33:58 - Issue 7305 Topics (messages 312730 through 312736): Re: [PHP-WEBMASTER] Simple question 312730 by: Richard Quadling Re: Bold links 312731 by: tedd 312732 by: Andre Polykanine 312733 by: Micky Hulse 312734 by:

[PHP] Re: [PHP-WEBMASTER] Simple question

2011-05-09 Thread Richard Quadling
On 9 May 2011 14:53, Vincent McGinley vmcgin...@re-thinkitinc.com wrote: Can you remove the @. Do you get an error? Tried this and got same result (page loads up halfway and no error message). Can you change the location to ./folder/$Product.php ? Changed path and same result. Does the

[PHP] Re: [PHP-WEBMASTER] Simple question

2011-05-09 Thread Richard Quadling
On 9 May 2011 15:59, Vincent McGinley vmcgin...@re-thinkitinc.com wrote: Notice:  Undefined variable: Product in /Applications/MAMP/htdocs/Pages/Products/Bamboo_Zoo/index.php on line 181 And there's the issue. In your old system, you probably had something called register_globals enabled.

RE: [PHP] Bold links

2011-05-09 Thread tedd
At 1:39 PM -0400 5/7/11, ad...@buskirkgraphics.com wrote: ?php global $current_user; get_currentuserinfo(); echo 'Welcome nbsp;B' . $current_user-user_firstname . /B\n; echo 'B' . $current_user-user_lastname . /B\n; ? Richard L. Buskirk Really? How does the blind via

Re: [PHP] Bold links

2011-05-09 Thread Andre Polykanine
Hello tedd, I'm standing up and applauding you. Really, I'm... quite touched. There are too few people that care about us, I mean, JAWS users. Of course, we, my wife and I, develop accessible websites ourselves but... there is lots of inaccessible stuff out there. -- With best regards

Re: [PHP] Bold links

2011-05-09 Thread Micky Hulse
On Mon, May 9, 2011 at 2:56 PM, tedd tedd.sperl...@gmail.com wrote: Really? How does the blind via readers, such as JAWS, understand what a B is? First, never use B -- or I for that matter. Second, use strong or em instead. Readers can understand and render STRONG and EMPHASIZED text, but not

Re: [PHP] Bold links

2011-05-09 Thread Joshua Kehn
On Monday, May 9, 2011 at 6:53 PM, Micky Hulse wrote: On Mon, May 9, 2011 at 2:56 PM, tedd tedd.sperl...@gmail.com wrote: Really? How does the blind via readers, such as JAWS, understand what a B is? First, never use B -- or I for that matter. Second, use strong or em instead. Readers can

Re: [PHP] Bold links

2011-05-09 Thread Micky Hulse
On Mon, May 9, 2011 at 4:18 PM, Joshua Kehn josh.k...@gmail.com wrote: If you are only make the last name bold for stylistic purposes you should use CSS and a class. If you have text that needs to be emphasized or strongly put use the appropriate tags. Hrmm, I personally don't think there is

[PHP] Error Reporting/Display Errors Issues?

2011-05-09 Thread Mike Mackintosh
Anyone else notice PHP throwing Warning and Notices even when display errors and error reporting disabled? I compiled PHP with the following: './configure' '--prefix=/usr/local/php-5.3.3' '--enable-cli' '--disable-debug' '--disable-rpath' '--disable-static' '--with-pic' '--with-openssl=/usr'