Re: [PHP-DB] PHP to md5 the $var before it reaches MySQL's gen query log

2007-05-13 Thread Chris
Chetan Graham wrote: Greetings to All, I am having difficulty in 'md5'ing a $var in a function before it is placed into the ("INSERT INTO table... The whole point is I don't want the MySQL DB logs showing my $var's password and username 'before' it is encrypted by MySQL's md5. When MySQL receiv

Re: [PHP-DB] POSTing values to other page

2007-05-13 Thread Chris
ioannes wrote: I am trying to send POST values from one page to another, they are too long to be handled by GET. Either use the session or use curl (http://www.php.net/curl) -- Postgresql & php tutorials http://www.designmagick.com/ -- PHP Database Mailing List (http://www.php.net/) To unsubs

Re: [PHP-DB] Is there something similar to this out there?

2007-05-13 Thread Chris
rieh25 wrote: I'm working on a script to create back-up's of a database. It's not complete because it only generates the "insert into" commands, it doesn't generate the "create database" or "create table" ones, but I wondered if there is another way to create a back-up's of a database that can on

Re: [PHP-DB] Migrate MySQL to Ingres

2007-05-13 Thread Chris
Jeffrey wrote: We have a moderately complex PHP web app collecting data from a MySQL database. We've been offered a rather attractive proposition to build an Ingres version (ie. same app, but collects data from an Ingres database). Questions for experts like you: 1) Is this a reasonably strai

Re: [PHP-DB] Re: MySQL Query on the Fly

2007-05-13 Thread Steven Cruz
You can the entire thing in Java script with Style sheets. Depends on what he wants to do. iframes could be far simpler. :) itoctopus wrote: You have to use an iframe to do what you want. Once the user select something, you referesh the iframe and you pass specific parameters to it based on th

Re: [PHP-DB] POSTing values to other page

2007-05-13 Thread Onochie Anyanetu
Why not put them into session variables? Have you tried that? On 5/13/07, ioannes <[EMAIL PROTECTED]> wrote: I am trying to send POST values from one page to another, they are too long to be handled by GET. page1.php page2.php I've tried in page1 $str="?"; foreach($_POST as $name=>$

[PHP-DB] Migrate MySQL to Ingres

2007-05-13 Thread Jeffrey
We have a moderately complex PHP web app collecting data from a MySQL database. We've been offered a rather attractive proposition to build an Ingres version (ie. same app, but collects data from an Ingres database). Questions for experts like you: 1) Is this a reasonably straightforward migra

[PHP-DB] POSTing values to other page

2007-05-13 Thread ioannes
I am trying to send POST values from one page to another, they are too long to be handled by GET. page1.php page2.php I've tried in page1 $str="?"; foreach($_POST as $name=>$value) { $str.=$name."=".$value."&"; } header("Location: http://host/path/page2.php$str";); gives: