php-windows Digest 7 Feb 2003 20:04:06 -0000 Issue 1576

Topics (messages 18379 through 18391):

Passing parameters in forms
        18379 by: Apollo
        18382 by: fran.thomas.barclays.co.uk

how to make php4ts.dll act as a module of vb6 program?
        18380 by: ¹Ð¥Á
        18381 by: ¹Ð¥Á
        18384 by: Svensson, B.A.T. (HKG)
        18385 by: ¹Ð¥Á
        18386 by: Svensson, B.A.T. (HKG)
        18387 by: Per Lundberg
        18388 by: Svensson, B.A.T. (HKG)
        18389 by: Mikey
        18390 by: Per Lundberg

Re: mysql server config
        18383 by: Svensson, B.A.T. (HKG)

Newbie: How to initialize a superclass
        18391 by: Leonardo Javier Belén

Administrivia:

To subscribe to the digest, e-mail:
        [EMAIL PROTECTED]

To unsubscribe from the digest, e-mail:
        [EMAIL PROTECTED]

To post to the list, e-mail:
        [EMAIL PROTECTED]


----------------------------------------------------------------------
--- Begin Message ---
Hi there,

I am using Windows XP as my IIS platform, I have this code:

  <form  action="<?php print $PHP_SELF?>" method="POST">
    Type your name here: <input type="text" name="myName">
  </form>

even though i have typed a text on the textfield, $myName is still blank
after I pressed enter. I have done all the settings i must do according to
the installation manual, is there something else i should do?

I am a newbie, please help. Thanks.


--- End Message ---
--- Begin Message ---
Depending whether or not you are using autoglobals...

try reading $_POST['myName']

.:Fran

-----Original Message-----
From: Apollo [mailto:[EMAIL PROTECTED]]
Sent: 07 February 2003 00:52
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] Passing parameters in forms


Hi there,

I am using Windows XP as my IIS platform, I have this code:

  <form  action="<?php print $PHP_SELF?>" method="POST">
    Type your name here: <input type="text" name="myName">
  </form>

even though i have typed a text on the textfield, $myName is still blank
after I pressed enter. I have done all the settings i must do according to
the installation manual, is there something else i should do?

I am a newbie, please help. Thanks.



-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Internet communications are not secure and therefore the Barclays Group
does not accept legal responsibility for the contents of this message.
Although the Barclays Group operates anti-virus programmes, it does not
accept responsibility for any damage whatsoever that is caused by
viruses being passed.  Any views or opinions presented are solely those
of the author and do not necessarily represent those of the Barclays
Group.  Replies to this email may be monitored by the Barclays Group
for operational or business reasons.

--- End Message ---
--- Begin Message ---
as title,thanks


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.449 / Virus Database: 251 - Release Date: 27/1/2003


--- End Message ---
--- Begin Message ---
as title,thanks


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.449 / Virus Database: 251 - Release Date: 27/1/2003


--- End Message ---
--- Begin Message ---
> as title,thanks

I think the process of calling dynamic libraries should
be covered by the VB language documentation it self. Or?

--- End Message ---
--- Begin Message ---
but i need to know the functions of php4ts.dll
"B.A.T. Svensson" <[EMAIL PROTECTED]> wrote in message
001701c2ce8e$66978880$[EMAIL PROTECTED]">news:001701c2ce8e$66978880$[EMAIL PROTECTED]...
> > as title,thanks
>
> I think the process of calling dynamic libraries should
> be covered by the VB language documentation it self. Or?
>


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.449 / Virus Database: 251 - Release Date: 27/1/2003


--- End Message ---
--- Begin Message ---
> but i need to know the functions of php4ts.dll

Aha! But, sorry I can't help you on that one.
--- End Message ---
--- Begin Message ---
cmkpl wrote:
as title,thanks
What is it that you want to do, run PHP as a script interpreter with your program? Look in sapi/embedded (only in PHP 4.3.0) in the PHP source code for an example of the minimal functionality required. php4ts.dll is not an ActiveX component so it is not just "plug and play" like with other stuff; you might be required to write a wrapper in C to implement some of the PHP4 callbacks. But, it is definitely doable.

--
Best regards,

Per Lundberg / Capio ApS
Phone: +46-18-4186040
Fax: +46-18-4186049
Web: http://www.capio.com


--- End Message ---
--- Begin Message ---
> cmkpl wrote:
> > as title,thanks
> 
> What is it that you want to do, run PHP as a script interpreter with 
> your program?   Look in sapi/embedded (only in PHP 4.3.0) in the PHP 
> source code for an example of the minimal functionality required. 
> php4ts.dll is not an ActiveX component so it is not just "plug and play" 
> like with other stuff; you might be required to write a wrapper in C to 
> implement some of the PHP4 callbacks.  But, it is definitely doable.

I understood it as that he wanted to know the library functions of that DLL.
--- End Message ---
--- Begin Message ---
> but i need to know the functions of php4ts.dll

Use the source, Luke!

Mikey

--- End Message ---
--- Begin Message ---
Svensson, B.A.T. (HKG) wrote:

I understood it as that he wanted to know the library functions of that DLL.
Yeah, but that's likely not an end in itself but rather just a means to an end.

By the way, cmkpl, getting the symbol names from a DLL is just a matter of running a program such as "Dependency Walker" (included in Visual Studio).

--
Best regards,

Per Lundberg / Capio ApS
Phone: +46-18-4186040
Fax: +46-18-4186049
Web: http://www.capio.com


--- End Message ---
--- Begin Message ---
I would propose you to post this question in the MySQL list.
You would probably get better and more accurate answers on
question about MySQL there.

Also, reading the documentation that comes with MySQL
wille xplain for you how to dump data; however it wont
explain from which tables you need to dump it. (I don't
work with MySQL my self, so I don't know the details of
this.)

Mysql List
E-mail Address:  [EMAIL PROTECTED]


Regarding my self, I can't help you with much more on this.

                //Anders


> -----Original Message-----
> From: Rui [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, February 06, 2003 9:31 PM
> To: [EMAIL PROTECTED]
> Subject: [PHP-WIN] mysql server config
> 
> 
> Hy there,
> 
> I want to put a mysql database on a external server. My ISP told me that I
> need to make a Dump of the data and then make some kind of script that I
> couldn't understand.
> 
> Could anyone explain what I need to do?
> 
> Thanks a lot,
> 
> Cya
--- End Message ---
--- Begin Message ---
Hi all!
I need some advice. I have a superclass and a class that extends the first. Both have 
constructors. How do I initialize the superclass, the extended one, from the 
extension. Its not automatically as I supposed it could be. Please! thanks all for 
reading...
--- End Message ---

Reply via email to