[PHP-DB] calling function

2003-01-25 Thread web man
Hi guys, I am still new in calling functions in php. I wondered if anyone could show me an example in details on how to call this funciton in an application?? [PHP] "localhost", "user" => "", "pass" => "", "database" => "search_engine",

Re: [PHP-DB] calling function on submit instead of going to a new script

2002-12-06 Thread rolf vreijdenberger
or use javascript, this really keeps you on the same page -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] calling function on submit instead of going to a newscript

2002-12-05 Thread Peter Beckman
OR AND add a if (!empty($_GET['f']) and is_callable($_GET['f'])) { $_GET['f'](); } else { echo "No function."; } On Thu, 5 Dec 2002, Gavin Amm wrote: > Hi, > > I'm using some form fields on a page to pick up existing data from a MySQL > database, make any changes, and update the database

Re: [PHP-DB] calling function on submit instead of going to a new script

2002-12-04 Thread Ignatius Reilly
m" <[EMAIL PROTECTED]> To: "Php-Db (E-mail)" <[EMAIL PROTECTED]> Sent: Thursday, December 05, 2002 6:31 AM Subject: [PHP-DB] calling function on submit instead of going to a new script > Hi, > > I'm using some form fields on a page to pick up existing data

RE: [PHP-DB] calling function on submit instead of going to a new script

2002-12-04 Thread Beau Lebens
Php-Db (E-mail) // Subject: [PHP-DB] calling function on submit instead of // going to a new // script // // // Hi, // // I'm using some form fields on a page to pick up existing // data from a MySQL // database, make any changes, and update the database when i // hit "submit". // I

[PHP-DB] calling function on submit instead of going to a new script

2002-12-04 Thread Gavin Amm
Hi, I'm using some form fields on a page to pick up existing data from a MySQL database, make any changes, and update the database when i hit "submit". I've picked up the data ok, now i want to process the update... How do i call a function(?) on the same page rather than use another page through