[PHP-DB] Passing Parameters By Reference to a COM Object function... Nasty!

2004-05-23 Thread Keith
Dear All, I've got a nasty little problem here I hope someone can help me... I'm doing a job which requires me to use a 3rd party COM component to connect to a MSSQL Server. This works by calling Stored Procedures in the MSSQL DB and returning them in an ADO RecordSet. The VB Declaration of the

Re: [PHP-DB] Passing parameters to a PHP file.

2001-09-13 Thread Victor Espina
Thanks Leo, i solved the problem using $HTTP_GET_VARS[]. -- == Victor Espina Caracas, Venezuela http://mitrompo.com/vespina [EMAIL PROTECTED] (Quite el 'nospam' para responder) (Remove 'nospam' to reply) Leo G. Divinagracia III [EMAIL PROTECTED] wrote in message

Re: [PHP-DB] Passing parameters to a PHP file.

2001-09-12 Thread leo g. divinagracia iii
u quick question, does VAR1 contain a value before the call??? could be null to begin with... Victor Espina wrote: I want to call a PHP file with some parameters. I tried this sintax: HREF=MyPage.PHP?Var1=Value1 But i don't seem to be receiving any value for Var1. I tested it with:

Re: [PHP-DB] passing parameters between forms

2001-04-05 Thread Theo de Jong
with input type=hidden value=$var name=var you can pass variables right through a form . Have to do things differently when working with security issues at hand though. !-- search2.php -- HTML BODY H1This is the Displaying page/H1 ?php if(mem_id)

Re: [PHP-DB] Passing parameters

2001-04-04 Thread Julie Meloni
if ($btnChoice = 'Save'){ Do something }elseif ($btnChoice = 'Delete') { header("Location: MemberAdmin.shtml"); exit; } use == instead of = -- ++ | Julie Meloni ([EMAIL PROTECTED]) | || | "PHP

[PHP-DB] passing parameters between forms

2001-04-02 Thread Sharmad Naik
Hi, I have created a database with following structure CREATE TABLE member( mem_id INT, name TEXT, age INT); the first page is as follows : !-- search1.html -- HTML BODY H1

[PHP-DB] passing parameters between forms

2001-04-02 Thread Sharmad Naik
Hi, I have created a database with following structure CREATE TABLE member( mem_id INT, name TEXT, age INT); the first page is as follows : !-- search1.html -- HTML BODY H1 This is