Re: [PHP] Passing Values between C App and PHP

2009-06-22 Thread Per Jessen
Tobias Krieger wrote: > This would be a nice and fast solution, but unfortunatelly, it's like > that the C programm needs to surveilance the hardware all the time > (controlling values,...) hence, it would run more as a "daemon". > Depending your skill-levels with C, there is not much to it. He

RE: [PHP] Passing Values between C App and PHP

2009-06-22 Thread bruce
: Re: [PHP] Passing Values between C App and PHP Am 21.06.2009 um 23:31 schrieb Nathan Nobbe: > On Sun, Jun 21, 2009 at 3:25 PM, Tobias Krieger > wrote: > Hi, > > I've recently written an eMail regarding I2C and PHP - since I > haven't found a nice solution yet, I&#x

Re: [PHP] Passing Values between C App and PHP

2009-06-21 Thread Nathan Nobbe
On Sun, Jun 21, 2009 at 3:44 PM, Tobias Krieger < tobias.krie...@teamfrednet.org> wrote: > This would be a nice and fast solution, but unfortunatelly, it's like that > the C programm needs to surveilance the hardware all the time (controlling > values,...) hence, it would run more as a "daemon". >

Re: [PHP] Passing Values between C App and PHP

2009-06-21 Thread Tobias Krieger
Am 21.06.2009 um 23:31 schrieb Nathan Nobbe: On Sun, Jun 21, 2009 at 3:25 PM, Tobias Krieger > wrote: Hi, I've recently written an eMail regarding I2C and PHP - since I haven't found a nice solution yet, I'm considering writting the I2C part (opening device, writing, reading,...) in C (tha

Re: [PHP] Passing Values between C App and PHP

2009-06-21 Thread Nathan Nobbe
On Sun, Jun 21, 2009 at 3:25 PM, Tobias Krieger < tobias.krie...@teamfrednet.org> wrote: > Hi, > > I've recently written an eMail regarding I2C and PHP - since I haven't > found a nice solution yet, I'm considering writting the I2C part (opening > device, writing, reading,...) in C (that's simple)

[PHP] Passing Values between C App and PHP

2009-06-21 Thread Tobias Krieger
Hi, I've recently written an eMail regarding I2C and PHP - since I haven't found a nice solution yet, I'm considering writting the I2C part (opening device, writing, reading,...) in C (that's simple) and to recieve (and returning) the values through PHP and Javascript. E.g. Website (PHP/J

Re: [PHP] passing values from dynamic form to another php page?

2005-09-16 Thread hope
Quite rite. Well i have used this on my next page: global $HTTP_POST_VARS; $num_fields=count($HTTP_POST_VARS); while(list($key, $value) = each($HTTP_POST_VARS)) { echo "$key = $value"; /or whatever coding i want to do// } regards hope Jay Blanchard wrote:

RE: [PHP] passing values from dynamic form to another php page?

2005-09-15 Thread Jay Blanchard
[snip] // now i want to access the values from input fields on next page? can somebody give me idea how to pass all form field values to next page in this context?? [/snip] Look in the $_POST array (which matches the f

[PHP] passing values from dynamic form to another php page?

2005-09-15 Thread hope
hi i m generating a dynamic form (no. of fileds depend upon user selection from previous page). On this page user enters values into form fields and i want to acess them on next page. ///file1.php

Re: [PHP] Passing values from a new window

2004-11-06 Thread M Saleh EG
Javascript. Simply just update ur fields at the parent window. On onUnload even of the popup do this self.opener.formName.fieldName.value=document.popupformName.popupfieldName.value; Your keywords to check in Javascript papers are parent_window, window_opener and Javascript DOM. If you're usi

Re: [PHP] Passing values from a new window

2004-11-05 Thread Greg Donald
On Fri, 05 Nov 2004 13:03:31 -0800, Todd Cary <[EMAIL PROTECTED]> wrote: > I have seen instances where the surfer can open a new window to get > email addresses and these addresses appear in the first window. Javascript. -- Greg Donald Zend Certified Engineer http://gdconsultants.com/ http://d

Re: [PHP] Passing values from a new window

2004-11-05 Thread Chris
That is usually done with Javascript, though if you've got a session running, you can update session variables, then use Javascript to refresh the source page. For the most part I'd recommend a purely Javascript solution, but in some cases Using session variables/cookies/database might make mor

[PHP] Passing values from a new window

2004-11-05 Thread Todd Cary
I have a button that creates a new window. The surfer may enter data in the new window, and if he does, when the window is closed by the surfer, can the information update fields on the original page - the page/window from which the new window was created? I have seen instances where the surfe

[PHP] passing values of checkboxes in PHP- solved

2004-05-16 Thread gowthaman ramasamy
I myself solved the problem. sorry for the trouble .. sincerely, gowtham On Mon, 2004-05-17 at 11:51, gowthaman ramasamy wrote: > hi list, > I have a problem with getting the values of check boxes ... > > In the form i have many checkbox options created dynamically. All of > them have same name b

[PHP] passing values of checkboxes in PHP

2004-05-16 Thread gowthaman ramasamy
hi list, I have a problem with getting the values of check boxes ... In the form i have many checkbox options created dynamically. All of them have same name but different values. But when user submits the form i am able to access only the value of last checkbox that user cliked. Values of rest of

RE: [PHP] Passing values to PHP

2004-03-30 Thread Vishal Patel
- From: Ciemny, Jessica [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 30, 2004 10:30 AM To: [EMAIL PROTECTED] Subject: [PHP] Passing values to PHP Hey every, I'm new to the group and to PHP (3 days now) and I would like to ask a question. I purchased a book on PHP a day or so ago and a

Re: [PHP] Passing values to PHP

2004-03-30 Thread Burhan Khalid
Ciemny, Jessica wrote: Hey every, I'm new to the group and to PHP (3 days now) and I would like to ask a question. I purchased a book on PHP a day or so ago and as I'm going through the book it comes to a point where it talks about passing html form values to PHP. So I type up the examples from the

RE: [PHP] Passing values to PHP

2004-03-30 Thread Jay Blanchard
[snip] Anyone have any ideas as to what's up. I hope its just something silly that I'm missing being a newby to PHP and all. [/snip] There is a feature in the php.ini called register_globals. If you look in your php.ini you will see that it is off by default and some of the books may have missed t

[PHP] Passing values to PHP

2004-03-30 Thread Ciemny, Jessica
Hey every, I'm new to the group and to PHP (3 days now) and I would like to ask a question. I purchased a book on PHP a day or so ago and as I'm going through the book it comes to a point where it talks about passing html form values to PHP. So I type up the examples from the book, both the html fi

Re: [PHP] Passing values dynamically

2003-10-17 Thread Nitin
i guess, it would be better to use loops, if i understand your problem, the way it is. Nitin - Original Message - From: "Rashini Jayasinghe" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, October 17, 2003 3:12 PM Subject: [PHP] Passing values dynami

Re: [PHP] Passing values dynamically

2003-10-17 Thread Marek Kilimajer
You need to create an array in the session and assign the values: $_SESSION['values']=array(); while( $v=/* get single value */ ) { $_SESSION['values'][]=$v; // notice the [] } Then on the other page loop the array. Rashini Jayasinghe wrote: Hi, I am getting a one column table as a result fo

[PHP] Passing values dynamically

2003-10-17 Thread Rashini Jayasinghe
Hi, I am getting a one column table as a result for a select statement. Now I want to pass obtained values dynamically to invoke another query in a new page. I tried to pass the values with sessions. But every time I get the last value of the previous result. Any suggestions as how I could pass th

[PHP] Passing values dynamically

2003-10-16 Thread Rashini Jayasinghe
Hi, I am getting a one column table as a result for a select statement. Now I want to pass obtained values dynamically to invoke another query in a new page. I tried to pass the values with sessions. But every time I get the last value of the previous result. Any suggestions as how I could pass

Re: [PHP] Passing values from one page to another

2003-08-25 Thread Chris Shiflett
--- murugesan <[EMAIL PROTECTED]> wrote: > Enter ... > > http://www.php.net/register_globals Chris = Become a better Web developer with the HTTP Developer's Handbook http://httphandbook.org/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.p

[PHP] Passing values from one page to another

2003-08-25 Thread murugesan
Hello all, [snip] //Page0.php Enter //page1.php function submitform() { //Check for empty values in text box } > --

RE: [PHP] Passing Values between Pages : $_SESSION / $_GET

2003-08-14 Thread Jay Blanchard
[snip] Let me clarify again. The $_GET Parameter was used to to transfer the name from the results page (with the tables etc) to a full-profile_1.php page. On the full_profile_1.php page the user is displayed a form with all the details about the company. On the same page there is a form wher

Re: [PHP] Passing Values between Pages : $_SESSION / $_GET

2003-08-14 Thread Pushpinder Singh Garcha
Thank you Jay for responding. Let me clarify again. The $_GET Parameter was used to to transfer the name from the results page (with the tables etc) to a full-profile_1.php page. On the full_profile_1.php page the user is displayed a form with all the details about the company. On the same p

Re: [PHP] Passing Values between Pages : $_SESSION / $_GET

2003-08-14 Thread David Robley
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] says... > Hello again, > > I would appreciate if someone could help me out with this one. > > Thanks again > > --Pushpinder > > > > > On Friday, August 8, 2003, at 11:46 AM, Pushpinder Singh Garcha wrote: > > > Hello All, > > > > I am usin

[PHP] Passing Values between Pages : $_SESSION / $_GET

2003-08-14 Thread Pushpinder Singh Garcha
Hello All, I am using php and mysql in my application which allows users to search/query a database. The database is cast and has about 32 rows per record. When the user fires the query, the result is in the form of a table that contains only the 6 important rows of the entire record. Als

RE: [PHP] Passing Values between Pages : $_SESSION / $_GET

2003-08-09 Thread Jay Blanchard
[snip] My question here is " How do I get the name of the company that was passed to this script as a $_GET Parameter. I cannot use the $company because it is out of scope. [/snip] How about $_GET['company'] ? Or am I missing something? Have a pleasant day. -- PHP General Mailing List (http://

Re: [PHP] Passing Values between Pages : $_SESSION / $_GET

2003-08-09 Thread Pushpinder Singh Garcha
Hello Jay , I am attaching snippet of the Form Code that displays the results of the first query meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> "; ?> Complete Candidate Profile

Re: [PHP] Passing Values between Pages : $_SESSION / $_GET

2003-08-09 Thread Pushpinder Singh Garcha
Hello again, I would appreciate if someone could help me out with this one. Thanks again --Pushpinder On Friday, August 8, 2003, at 11:46 AM, Pushpinder Singh Garcha wrote: Hello All, I am using php and mysql in my application which allows users to search/query a database. The database i

Re: [PHP] Passing values back to form

2003-06-06 Thread Daniel J. Rychlik
Thanks so much for your time. These are great tips, thanks again. - Original Message - From: "Kevin Stone" <[EMAIL PROTECTED]> To: "Daniel J. Rychlik" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Thursday, June 05, 2003 12:37 PM Subject: Re: [P

Re: [PHP] Passing values back to form

2003-06-06 Thread Kevin Stone
AIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, June 05, 2003 10:31 AM Subject: [PHP] Passing values back to form Im new to PHP coming from a background in perl devlopement. I have a form that a user can fill out. On submit the values are iterated over a foreach to check for empty(

[PHP] Passing values back to form

2003-06-06 Thread Daniel J. Rychlik
Im new to PHP coming from a background in perl devlopement. I have a form that a user can fill out. On submit the values are iterated over a foreach to check for empty(). If the an emtyp $key is found then it passes an error string to my error function. I have 2 php files, one that is the

RE: [PHP] passing values from one script to another script

2003-03-16 Thread John W. Holmes
> I want to pass a value, which came from a HTML form, to another PHP > script. How can i do this? > > e.g.: $login - the value of this varriable is came from LOGIN.HTML to > LOGIN.PHP. How can i pass the value of $login from LOGIN.PHP to > PROCESS.PHP? The easiest way is with a session. Remember

Re: [PHP] passing values from one script to another script

2003-03-16 Thread Marek Kilimajer
Either use session, cookies, or pass the value in URLs. Because it is login information, I would choose session or cookie Chinmoy Barua wrote: Hello everybody, I want to pass a value, which came from a HTML form, to another PHP script. How can i do this? e.g.: $login - the value of this varria

[PHP] passing values from one script to another script

2003-03-16 Thread Chinmoy Barua
Hello everybody, I want to pass a value, which came from a HTML form, to another PHP script. How can i do this? e.g.: $login - the value of this varriable is came from LOGIN.HTML to LOGIN.PHP. How can i pass the value of $login from LOGIN.PHP to PROCESS.PHP? Thank you, Chinmoy ---

Re: [PHP] Passing Values to an image script

2002-06-05 Thread Anzak Wolf
>On Thu, 6 Jun 2002, Anzak Wolf wrote: > > $h=20; > > $w=80; > > print ""; > > > > Now this is a much watered down version of what I'm doing, but the idea >is > > the same. I don't want to put the values I'm passing to the image in >the > > html code to be passed with a get. I'd like to be abl

Re: [PHP] Passing Values to an image script

2002-06-05 Thread Miguel Cruz
On Thu, 6 Jun 2002, Anzak Wolf wrote: > $h=20; > $w=80; > print ""; > > Now this is a much watered down version of what I'm doing, but the idea is > the same. I don't want to put the values I'm passing to the image in the > html code to be passed with a get. I'd like to be able to maybe pass

[PHP] Passing Values to an image script

2002-06-05 Thread Anzak Wolf
I'm stuck on an odd problem with sending values between scripts. Take the following example. $h=20; $w=80; print ""; Now this is a much watered down version of what I'm doing, but the idea is the same. I don't want to put the values I'm passing to the image in the html code to be passed wit

RE: [PHP] Passing Values

2002-04-03 Thread Rick Emery
show us code -Original Message- From: Sebastian A. [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 03, 2002 6:02 AM To: PHP General List (PHP.NET) Subject: [PHP] Passing Values Hello, Today I was working on an object that will create all of the columns and tables in my

[PHP] Passing Values

2002-04-03 Thread Sebastian A.
Hello, Today I was working on an object that will create all of the columns and tables in my DataBase for my upcoming application. I however, did run into trouble. I am having problems because I cannot pass the name of the database from the form to the function that needs it. Everything is

RE: [PHP] passing values

2002-03-13 Thread Hunter, Ray
r Firmware Engineer ENTERASYS NETWORKS -Original Message- From: John Gurley [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 13, 2002 6:43 AM To: [EMAIL PROTECTED] Subject: [PHP] passing values this is still not working for passing a value from one page to another: '; ?> When I

[PHP] passing values

2002-03-13 Thread John Gurley
this is still not working for passing a value from one page to another: '; ?> When I look at the source this appears: which I take to mean that it does not know what $inp is. could it be something with my browser, or am I still doing something wrong (I wouldn't be a bit surprised) Thanks J

Re: [PHP] passing values to a javascript variable

2001-06-22 Thread TunkeyMicket
- Original Message - From: "Romulo Roberto Pereira" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, June 21, 2001 3:38 PM Subject: [PHP] passing values to a javascript variable > Hello! > > The following give me: unterminated string constant (thi

Re: [PHP] passing values to a javascript variable

2001-06-21 Thread Joao Prado Maia
On Thu, 21 Jun 2001, Romulo Roberto Pereira wrote: > Hello! > > The following give me: unterminated string constant (this is a javascript > error) > > when I execute the following: > >while ($row = mysql_fetch_array ($data_query_action)) { > $data_data = $row["data_data"]; >} >

[PHP] passing values to a javascript variable

2001-06-21 Thread Romulo Roberto Pereira
Hello! The following give me: unterminated string constant (this is a javascript error) when I execute the following: while ($row = mysql_fetch_array ($data_query_action)) { $data_data = $row["data_data"]; } echo "\n var ndata=\"".addslashes($data_data)."\";\nPutCode (ndata);

RE: [PHP] Passing values from ASP to PHP

2001-03-01 Thread Michael Geier
OTECTED]] Sent: Thursday, March 01, 2001 9:47 AM To: [EMAIL PROTECTED] Cc: PHP General List Subject: RE: [PHP] Passing values from ASP to PHP Hi, To enumerate the key/value in ASP from the form you'd do this <% dim element dim objForm dim strURL '/* We're creating an object

RE: [PHP] Passing values from ASP to PHP

2001-03-01 Thread Opec Kemp
Hi, To enumerate the key/value in ASP from the form you'd do this <% dim element dim objForm dim strURL '/* We're creating an object so that it won't matter which ' * HTTP method the previous form uses. ' */ If LCase(Server.Request("HTTP_METHOD")) = "post" Then Set objForm = Request.Fo

AW: [PHP] Passing values from ASP to PHP

2001-03-01 Thread Sebastian Stadtlich
it can be done with apache even easier, but as you use asp, i assume you use iis Sebastian > -Ursprungliche Nachricht- > Von: Isaac [mailto:[EMAIL PROTECTED]] > Gesendet: Mittwoch, 28. Februar 2001 22:08 > An: [EMAIL PROTECTED] > Betreff: [PHP] Passing values from ASP to PH

Re: [PHP] Passing values from ASP to PHP

2001-02-28 Thread Thomas Deliduka
Well, if it's a query string it's easy... In the ASP page you do: <% Response.Redirect("myscript.php?" & Request.ServerVariables("QUERY_STRING")) %> If it's posted form data do this: <% Dim Querystring Querystring = "" For each Item in Request.Form if Querystring = "" Then Querystr

[PHP] Passing values from ASP to PHP

2001-02-28 Thread Isaac
I've been given a project that I want to use PHP with, but unfortunately there are unchangable hard-coded values that point clients to an ASP script residing on our server. Here's what I want to do, and I don't really know how to do it: I want to pass all the key/value pairs that are passed to th