Re: [PHP-DB] echo into variable or the like

2012-08-21 Thread Karl DeSaulniers
On Aug 21, 2012, at 12:35 AM, s@optusnet.com.au wrote: yeah, I am thinking I should make that a function and call it from a variable. what do you think? I think I need a php.net 'arrays for dummies'. Sean Williams T: 0416 628 967 E: sm...@optusnet.com.au Skype: seanw78 -Original

Re: [PHP-DB] Re: PDO Mysql data truncation missing error

2012-08-21 Thread Amit Tandon
Dear Matt, Even with MySQL, u get the warning as the show warnings is enabled. With php bound scripts, you have to check warnings to see the warnings. However, php is quite flexible and you an use error_reporting(E_WARNING) for non-fatal error reporting regds amit On Aug 21, 2012 10:41 AM, Matt

Re: [PHP-DB] echo into variable or the like

2012-08-21 Thread Daniel Brown
On Tue, Aug 21, 2012 at 12:01 AM, s@optusnet.com.au wrote: Hi, this is my first post so forgive me if I missed a rule and do something wrong. I have this code, echo $_SERVER['PHP_SELF'].?; foreach ($_GET as $urlvar=$urlval) echo $urlvar.=.$urlval.; It works by it’s self. I want to

[PHP-DB] ANN: PHP Generator 12.8 released

2012-08-21 Thread SQL Maestro Group
Hi! SQL Maestro Group is happy to announce the release of PHP Generator 12.8, a family of GUI frontends that allow you to generate feature-rich CRUD web applications for your databases. There are versions for MySQL, MS SQL Server, PostgreSQL, Oracle, SQLite, Firebird, DB2, SQL Anywhere and

[PHP-DB] Nubbie pointers on MySQL users ...

2012-08-21 Thread Lester Caine
OK I've had a crash course in MySQL and have moved some joomla sites over to one of my servers. I've got phpmyadmin up and running and can see one of the remote servers, and I have a mirror running on a local server, but I'm a little confused over 'user names' The local machine (php5.3)

Re: [PHP-DB] Re: PDO Mysql data truncation missing error

2012-08-21 Thread Matt Pelmear
Amit, Thanks for the suggestion. Unfortunately, even when I explicitly enable E_WARNING or even E_ALL error reporting in php I still do not receive any indication that data was truncated on insert. -Matt On 08/21/2012 07:09 AM, Amit Tandon wrote: Dear Matt, Even with MySQL, u get the

Re: [PHP-DB] Re: PDO Mysql data truncation missing error

2012-08-21 Thread Bastien Koert
On Tue, Aug 21, 2012 at 4:44 PM, Matt Pelmear mjpelm...@gmail.com wrote: Amit, Thanks for the suggestion. Unfortunately, even when I explicitly enable E_WARNING or even E_ALL error reporting in php I still do not receive any indication that data was truncated on insert. -Matt On

Re: [PHP-DB] Re: PDO Mysql data truncation missing error

2012-08-21 Thread Karl DeSaulniers
On Aug 21, 2012, at 3:44 PM, Matt Pelmear wrote: Amit, Thanks for the suggestion. Unfortunately, even when I explicitly enable E_WARNING or even E_ALL error reporting in php I still do not receive any indication that data was truncated on insert. -Matt On 08/21/2012 07:09 AM, Amit