473,386 Members | 1,830 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

help on taking textbox value without using a <form>

for instance i do have this element but i dont have a <form>:
<input type="Text" name="myname" id="myname" size="30"...>

then i have this link:
echo'<a href="mypage.php?name='.$myname.'...>Save</a>';

i want that $myname will the value of myname textbox. something like
this:
$myname= <the value of the textbox>

then on the side of mypage.php it will catch the values on same
manner:
$myname=$_GET['myname'];
..
..
..
i know this can be easily using <form>...</form>. but if i dont want
to use a for will it be possible? incase it is, how get the value of
the textbox and assign it to $myname variable?

May 16 '07 #1
5 13822
On May 15, 9:50 pm, shotokan99 <soft_devj...@yahoo.comwrote:
for instance i do have this element but i dont have a <form>:
<input type="Text" name="myname" id="myname" size="30"...>

then i have this link:
echo'<a href="mypage.php?name='.$myname.'...>Save</a>';

i want that $myname will the value of myname textbox. something like
this:
$myname= <the value of the textbox>

then on the side of mypage.php it will catch the values on same
manner:
$myname=$_GET['myname'];
.
.
.

i know this can be easily using <form>...</form>. but if i dont want
to use a for will it be possible? incase it is, how get the value of
the textbox and assign it to $myname variable?
I'm a little too tired to figure out exactly what you're looking to
do, but through the fog I think the answer is JavaScript. JavaScript
can read the value of any input field with an ID, and you can use it
to modify the href property of a link you have somewhere, I think. I
know I've used JavaScript, for example, to change the target value of
a form based on one of the form's inputs before sending. Something
along those lines.

Ricky

May 16 '07 #2
ah ok sorry for the inconvenience...let me try to explain it clearly.
usually if we have this:

<form name=".." method="post" action="my.php">
<input type="Text" name="myname" id="myname" size="30"...<Br>
<input type="submit" name".." value="save">
</form>

and my.php will have:

<?php
$myname=$_POST['myname'];
..
//processing here....
..
?>

now how about if i remove the <form...tag. then instead of a submit
button ill replace it with a text linking to my.php. it loots
something like this:

<input type="Text" name="myname" id="myname" size="30"...<Br>
<a href="my.php?name='.$myname.'...>Save</a>

then my.php will look like this:
<?phpa
$myname=$_GET['myname'];
..
//processing here....
..
?>

my problem is how get the value of the textbox and assign it to
$myname variable.
is it possible with php or i need javascript for this matter? i hope i
was able to explain it clearly


May 16 '07 #3
shotokan99 wrote:
ah ok sorry for the inconvenience...let me try to explain it clearly.
usually if we have this:

<form name=".." method="post" action="my.php">
<input type="Text" name="myname" id="myname" size="30"...<Br>
<input type="submit" name".." value="save">
</form>

and my.php will have:

<?php
$myname=$_POST['myname'];
.
//processing here....
.
?>

now how about if i remove the <form...tag. then instead of a submit
button ill replace it with a text linking to my.php. it loots
something like this:

<input type="Text" name="myname" id="myname" size="30"...<Br>
<a href="my.php?name='.$myname.'...>Save</a>

then my.php will look like this:
<?phpa
$myname=$_GET['myname'];
.
//processing here....
.
?>

my problem is how get the value of the textbox and assign it to
$myname variable.
is it possible with php or i need javascript for this matter? i hope i
was able to explain it clearly

Unless the textbox is in a form, it will never be submitted to the
server, so PHP will never see it.

But why not use a form? That's why it's there.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================
May 16 '07 #4
On May 15, 9:50 pm, shotokan99 <soft_devj...@yahoo.comwrote:
for instance i do have this element but i dont have a <form>:
<input type="Text" name="myname" id="myname" size="30"...>

then i have this link:
echo'<a href="mypage.php?name='.$myname.'...>Save</a>';

i want that $myname will the value of myname textbox. something like
this:
$myname= <the value of the textbox>

then on the side of mypage.php it will catch the values on same
manner:
$myname=$_GET['myname'];
.
.
.

i know this can be easily using <form>...</form>. but if i dont want
to use a for will it be possible? incase it is, how get the value of
the textbox and assign it to $myname variable?
If I understand your question, you wish to submit your form using a
textual link rather than a <input type="submit" ... />, button, or
image. HTML/PHP doesn't support this, but you can do it with a little
JavaScript. Still use a <form>, though:

<form method="post" action="my.php" name="hurray_js">
<input type="Text" name="myname" id="myname" size="30"...<Br>
<a href="javascript:document.hurray_js.submit();">Sub mit</a>
</form>
my.php:
</php
$myname = $_POST['myname'];
.....
?>

cheers,

Steve

May 16 '07 #5
Tom

"Jerry Stuckle" <js*******@attglobal.netwrote in message
news:zs******************************@comcast.com. ..
shotokan99 wrote:
ah ok sorry for the inconvenience...let me try to explain it clearly.
usually if we have this:

<form name=".." method="post" action="my.php">
<input type="Text" name="myname" id="myname" size="30"...<Br>
<input type="submit" name".." value="save">
</form>

and my.php will have:

<?php
$myname=$_POST['myname'];
.
//processing here....
.
?>

now how about if i remove the <form...tag. then instead of a submit
button ill replace it with a text linking to my.php. it loots
something like this:

<input type="Text" name="myname" id="myname" size="30"...<Br>
<a href="my.php?name='.$myname.'...>Save</a>

then my.php will look like this:
<?phpa
$myname=$_GET['myname'];
.
//processing here....
.
?>

my problem is how get the value of the textbox and assign it to
$myname variable.
is it possible with php or i need javascript for this matter? i hope i
was able to explain it clearly



Unless the textbox is in a form, it will never be submitted to the
server, so PHP will never see it.

But why not use a form? That's why it's there.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================
Along the lines of what you were saying, you can use $_GET variables by
formatting a web address link correctly

http://www.domain.com/index.php?key1='value1'+key2='value2'

but a textarea form field is too large to do that with. If you already have
a textarea that needs to be filled in, there's normally some submit button
and would probably be simpler using $_POST variables than trying to force
the textarea data in $_GET.

Tom
--
Newsguy.com
Unlimited Accounts - $19.95 / month
May 16 '07 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Ricki Susic | last post by:
Hi, Can anyone tell me if it is possible to call a function from a html form, where the function is included in the same file as the form. <html> <body> <form method="post" action="what...
4
by: Sims | last post by:
Hi, This will validate, (http://validator.w3.org/) <form method="POST" action="" name='xForm' style='background:inherit;'> <table style='background:inherit; width:100%;'> <tr width=80%> <td>...
2
by: Keiron Waites | last post by:
I have the following code: <input type="text" name="search" class="search_top"> <a href="" onclick="window.location='search.inc.php'+document..search. value; return false;"...
6
by: Don | last post by:
I'm trying to come up with a way within a client-side web page of uploading a couple files to a server-side PHP program without using a <form...>. I don't want to give up the page which happens...
4
by: Howard Jess | last post by:
In Opera 8.01 (Linux; Build 1204) and in Opera 7.54 (Windows XP; Build 3865), my form disappears from the HTML markup (below). To summarize: 1) In a <script> block in the <head> I create a form...
6
by: snacktime | last post by:
I've searched and searched and have not found a solution to suppress the margin on form or href tags so that there is no space before or after the tag. The only way I have found to do this is to...
4
by: rob c | last post by:
This is a minor thing and only appears in IE (so far), but I'd like to know to correct it (if possible). Whenever I use a form on a webpage, Explorer always leaves a blank line following the...
8
by: chris_fieldhouse | last post by:
Hi fairly new to php, but picking it up quite well. the question I have, is it possible for a php script which is used to validate values submitted in a form, to then post these values onto...
19
by: Coward 9 | last post by:
HI, I saw in an example hello.aspx, there is a <form tagbeing used like <form runat="server> I search all html tag references and could NOT find "runat" attributes for <formtag. which...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.