Re: [PHP] Passing variable to a page in a frameset

2008-08-15 Thread Dan Shirah
> > So, I had this all wrong before. Basically, I need two forms, right? One >> on my originating page, and one on the page within the frameset I want to >> pass the values to. Correct? >> >> My form, which I named my_search has one input field, which I named query. >> In the javascript, I put in

Re: [PHP] Passing variable to a page in a frameset

2008-08-15 Thread Jody Cleveland
On Aug 15, 2008, at 11:32 AM, Dan Shirah wrote: In the of my page, I have this: function submitForm(var1,var2) { top.mainFrame.document.my_search.text1.value = var1; top.mainFrame.document.my_search.text2.value = var2; top.mainFrame.document.my_search.submit(); document.search_form.submi

Re: [PHP] Passing variable to a page in a frameset

2008-08-15 Thread Dan Shirah
> > In the of my page, I have this: > > > function submitForm(var1,var2) { > top.mainFrame.document.my_search.text1.value = var1; > top.mainFrame.document.my_search.text2.value = var2; > top.mainFrame.document.my_search.submit(); > document.search_form.submit(); > } > > > If I type in a word

Re: [PHP] Passing variable to a page in a frameset

2008-08-15 Thread Jody Cleveland
On Aug 15, 2008, at 7:33 AM, Dan Shirah wrote: I apologize for my ignorance, I don't really know much about javascript. When I add all that into my form page, when I submit the form, it just replaces the page I was on with the form results, rather than in the new frame page. I'm assuming I need

Re: [PHP] Passing variable to a page in a frameset

2008-08-15 Thread Dan Shirah
> > I apologize for my ignorance, I don't really know much about > javascript. When I add all that into my form page, when I submit the > form, it just replaces the page I was on with the form results, rather > than in the new frame page. I'm assuming I need to put the url for the > frameset page i

Re: [PHP] Passing variable to a page in a frameset

2008-08-14 Thread tedd
At 4:06 PM -0500 8/14/08, george wrote: Thank you for taking the time to help me with this, I really appreciate it! - jody Make it easy on yourself and try this: http://sperling.com/examples/search/ Cheers, tedd -- --- http://sperling.com http://ancientstones.com http://earthstones

Re: [PHP] Passing variable to a page in a frameset

2008-08-14 Thread george
On Thu, Aug 14, 2008 at 3:43 PM, Dan Shirah <[EMAIL PROTECTED]> wrote: >> > Hello, >> > >> > I've got a website here: http://beta.menashalibrary.org/about >> > >> > On every page, i've got a search box at the top. This search box >> > searches >> > the library's web catalog. The problem is, when so

Re: [PHP] Passing variable to a page in a frameset

2008-08-14 Thread Stut
On 14 Aug 2008, at 21:34, Jody Cleveland wrote: I've got a website here: http://beta.menashalibrary.org/about On every page, i've got a search box at the top. This search box searches the library's web catalog. The problem is, when someone searches, it takes them away from the site. What I'd

Re: [PHP] Passing variable to a page in a frameset

2008-08-14 Thread Dan Shirah
> > > Hello, > > > > I've got a website here: http://beta.menashalibrary.org/about > > > > On every page, i've got a search box at the top. This search box searches > > the library's web catalog. The problem is, when someone searches, it > takes > > them away from the site. What I'd like to do is t

Re: [PHP] Passing variable to a page in a frameset

2008-08-14 Thread Bastien Koert
On Thu, Aug 14, 2008 at 4:34 PM, Jody Cleveland <[EMAIL PROTECTED]>wrote: > Hello, > > I've got a website here: http://beta.menashalibrary.org/about > > On every page, i've got a search box at the top. This search box searches > the library's web catalog. The problem is, when someone searches, it

Re: [PHP] Passing variable number of parameters by reference

2005-05-12 Thread Marek Kilimajer
I believe it's mentioned somewhere in the manual you can't do that. func_get_arg() always return a copy. You can workaround this using an array. Robert Meyer wrote: Hello, Using: PHP Version 5.0.3 I build the following function: function Set4HTMLOut() { $C = func_num_args(); for (

Re: [PHP] Passing variable on include

2004-08-29 Thread Xongoo!com: Central unit
ECTED]> Cc: <[EMAIL PROTECTED]> Sent: Sunday, August 29, 2004 11:41 AM Subject: Re: [PHP] Passing variable on include > Xongoo!com: Central unit wrote: > > Hi, > > > > I have to pass variable on include > > include("includes/include.php"); > > >

Re: [PHP] Passing variable on include

2004-08-29 Thread Marek Kilimajer
Xongoo!com: Central unit wrote: Hi, I have to pass variable on include include("includes/include.php"); include("includes/include.php?name=$name"); wouldn't work. How do I do that? Cokies are not an option, btw. Code in includes/include.php is executed in the scope of the including file, so all va

Re: [PHP] Passing variable from webpage to php (newbie?)

2003-03-20 Thread Bobby Rahman
Hiya It could need setting register_globals =on in your php.ini if after that still problems then you may need to look into sessions and in particular session_start() and $_SESSION['varname'] and make sure the variables are global so that more than one script can use them. Hope this steers you

Re: [PHP] passing variable question

2002-11-11 Thread John Nichel
Pass if via the URL Link On the display page, access the data you passed by... $_GET['picture_data'] Do a google search for "get query". Ron Clark wrote: Hello all, I have a php script that reads all the files in a directory (pictures), the outputs each picture as a link to be displayed in t

Re: [PHP] passing variable question

2002-11-11 Thread Marco Tabini
You just need to add a question mark, the name of the variable, an equal sign and its value (properly encoded): echo ''; In the receiving script, you can read the value using $_GET['myvalue']; Hope this helps! Marco -- php|architect - The magazine for PHP Professionals The first

RE: [PHP] passing variable via url ( newbye question)

2002-07-30 Thread Martin Towell
Is this a direct copy from your code? > echo $_GET['modo']." echo $_GET['color']." echo $_GET['size']." tags see if that helps Martin -Original Message- From: Saci [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 31, 2002 6:09 AM To: [EMAIL PROTECTED] Subject: [PHP] passing variable via

RE: [PHP] passing variable via url ( newbye question)

2002-07-30 Thread cteubner
You are passing the variables correctly. If that's your actual code echo $_GET['modo']." (note the closing > ) - PHP is doing what you told it, and your browser is confused by the output. If PHP were the problem you'd probably see an error message. Also, upgrade to 4.2.2 please :) Regards, Co

Re: [PHP] passing variable via url ( newbye question)

2002-07-30 Thread Martin Clifford
http://myaddress/php/mypage.php?modo=123&color=red&size=3 Just separate name/value pairs with ampersand (&). HTH Martin Clifford Homepage: http://www.completesource.net Developer's Forums: http://www.completesource.net/forums/ >>> "Saci" <[EMAIL PROTECTED]> 07/30/02 04:09PM >>> I can pass on

Re: [PHP] passing variable arguments from

2002-06-27 Thread Haddad Said
I just found out the $_POST['language'] is always assigned the value Array. Since a user must choose either of the options and not both, I would rather do this without arrays, is there another way? "Haddad Said" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... >

Re: [PHP] passing variable arguments from

2002-06-27 Thread Haddad Said
Yes I changed that, but now it always echoes EngP=0 "Mark Heintz Php Mailing Lists" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > On Thu, 27 Jun 2002, Haddad Said wrote: > > > in query.php i have this piece of code; > > > > echo " > > > > one > > two > > >

Re: [PHP] passing variable arguments from

2002-06-27 Thread Mark Heintz PHP Mailing Lists
On Thu, 27 Jun 2002, Haddad Said wrote: > in query.php i have this piece of code; > > echo " > > one > two > > > > "; > > and in test2.php i have this; > > if ($_POST['language'] = 1) > {$lang = "EngP=1";} > else {$lang = "EngP=0";} > echo $lang ; > > But it always echoes EngP=1 no matter wha

Re: [PHP] passing variable arguments from

2002-06-27 Thread Haddad Said
I still cant get it right, in query.php i have this piece of code; echo " one two "; and in test2.php i have this; if ($_POST['language'] = 1) {$lang = "EngP=1";} else {$lang = "EngP=0";} echo $lang ; But it always echoes EngP=1 no matter what I choose, what is wrong here?? "Erik Price

Re: [PHP] passing variable arguments from

2002-06-26 Thread Erik Price
On Wednesday, June 26, 2002, at 02:51 PM, Haddad Said wrote: > Hi, i am having a problem passing variables from a drop down menu in a > form; > > > > one > two > You should do it like this (be sure to properly quote your attributes, and use the 'value' attribute of the 'option' tag): p

RE: [PHP] Passing variable to new page and pulling the rest of info from database

2002-06-05 Thread Scott Hurring
nt: Wednesday, June 05, 2002 5:10 PM > To: Scott Hurring; Php-General (E-mail) > Subject: Re: [PHP] Passing variable to new page and pulling > the rest of > info from database > > > Or simply just validate it's an integer, like it should be, > like you would >

Re: [PHP] Passing variable to new page and pulling the rest of info from database

2002-06-05 Thread 1LT John W. Holmes
-General (E-mail)" <[EMAIL PROTECTED]> Sent: Wednesday, June 05, 2002 4:30 PM Subject: RE: [PHP] Passing variable to new page and pulling the rest of info from database > Ahhh! quote that ID number before using it in a query! :) > > // for mysql > mysql_quote($_GET['ID&

RE: [PHP] Passing variable to new page and pulling the rest of info from database

2002-06-05 Thread Scott Hurring
[EMAIL PROTECTED]] > Sent: Wednesday, June 05, 2002 4:29 PM > To: Igor Portnoy; [EMAIL PROTECTED] > Subject: Re: [PHP] Passing variable to new page and pulling > the rest of > info from database > > > SELECT * FROM table WHERE ID = $_GET['ID'] > > Then create a

Re: [PHP] Passing variable to new page and pulling the rest of info from database

2002-06-05 Thread 1LT John W. Holmes
SELECT * FROM table WHERE ID = $_GET['ID'] Then create a page to display all of that information. Look at the mysql functions and learn some PHP. We can't help you without knowing what's in your table and how you want it displayed, etc... So keep learning and reading and you'll figure out how to

RE: [PHP] Passing variable to the next page

2002-06-04 Thread David Freeman
> Here is scenario that I am working on but have a problem. > I have 10 thumbnail images on the page with information for > them created from database. > (I am pulling more info about that image from database, but > on this page I only display "Name of Image" and "Author of > image

Re: [PHP] Passing variable to the next page

2002-06-04 Thread Pushkar Pradhan
Tag the variables onto the url: http://mysite.com/newpage.php?firstvar=somevalue&secondvar=othervalue&;. for arrays ?layer[]=a&layer[]=b&layer[]=c. or use sessions. > Here is scenario that I am working on but have a problem. I have 10 > thumbnail images on the page with information for t

Re: [PHP] Passing Variable

2002-04-17 Thread Michal Dvoracek
Hello, store value in hidden field in form, like this: when form is submitted field id contains required value. or use cookie (but here is test if cookie enabled) Regards Michal Dvoracek [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubs

Re: [PHP] Passing variable with slashes in URL

2001-05-16 Thread Chris Lee
cant say for sure, but I dont play around with rawencode and addslasses for urls, just use urlencode() echo " test "; -- Chris Lee [EMAIL PROTECTED] ""Claudia Smith"" <[EMAIL PROTECTED]> wrote in message 9duqke$9g1$[EMAIL PROTECTED]">news:9duqke$9g1$[EMAIL PROTECTED]... Currently I have

Re: [PHP] passing variable via url

2001-03-05 Thread Christian Reiniger
On Monday 05 March 2001 17:43, you wrote: > using PHP 3.x on Linux, I've always been able to pass along a variable > like http://www.domain.com/index.php3?foo=bar > > and then I could print out this with something like > echo $foo; > would print out "bar" > > I've recently installed the latest PH