[PHP] Re: variable in e-mail

2003-10-17 Thread Kristin Schesonka
Hi, Sorry, but we are not able to help you without any code from you. Greetz Kristin Schesonka Christian Tischler <[EMAIL PROTECTED]> schrieb in im Newsbeitrag: [EMAIL PROTECTED] > I would like to use a form in a html page to pass the variables to a php > page, which sends an mail inc

[PHP] Re: javascript & php

2003-07-28 Thread Kristin Schesonka
th) >file://--> >"; > > $query = mysql_query("select id from color where color = '$color' "); > $a = mysql_num_rows($query); Greetings Kristin Schesonka -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Carrying a variable

2003-07-15 Thread Kristin Schesonka
Hi :) It's really simpel //$Unit = ($_GET['Unit']); //... //echo ""; You use "post" as method and then you want to read your value with $_GET - that couldnt't work - you must use $_POST. ->$Unit = ($_POST['Unit']); Greetings from Germany

[PHP] Re: Fputs problem

2003-07-08 Thread Kristin Schesonka
ring.php#language.types.string .syntax.single Greetings Kristin Schesonka "Steve Jackson" <[EMAIL PROTECTED]> schrieb im Newsbeitrag news:[EMAIL PROTECTED] > I don't know if this is possible but... > > I want to generate a PHP file on the fly. I am trying to use fputs but

[PHP] Re: passthru() problem

2003-07-02 Thread Kristin Schesonka
I don't know much about System or passthru - but doesn't it have to be something like: passthru(ftpwho -v, &$return_var); echo $return_var; Because it is a reference Parameter und without the "&" the function can't put the value into $return_var. Greetings

Re: [PHP] Re: Form 2 PDF 2 Form

2003-07-01 Thread Kristin Schesonka
at a different stage . . . . Greetings Kristin Schesonka -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Form 2 PDF 2 Form

2003-07-01 Thread Kristin Schesonka
Hi :) I'm actually working on an Multipart-Form and i'm saving all data during the "Fill-In" process in a Session - then, at the end, i save the whole sessiondata in my table. That will solve the connection-problems i hope . . . If I am wrong, please correct me :) Greetings f