x27;GET') {
>echo "this is a get request\n";
>echo $_GET['fruit']." is the fruit\n";
>echo "I want ".$_GET['quantity']." of them\n\n";
> } elseif($_SERVER['REQUEST_METHOD'] == 'PUT') {
>ech
Hi,
I am trying to read variables from input method.
I am using this tuorial:
http://www.lornajane.net/posts/2008/Accessing-Incoming-PUT-Data-from-PHP.
Here is my code:
I am using the firefox extension "poster" to run this example. GET
works fine but when using PUT, file_get_con
On 29 September 2011 23:28, PHProg wrote:
>
> Hello Richard,
>
> Your suggestion worked perfectly.
> ... it works beautifully.
Now that's what I like to hear!
Glad to be of help.
--
Richard Quadling
Twitter : EE : Zend : PHPDoc
@RQuadling : e-e.com/M_248814.html : bit.ly/9O8vFY : bit.ly/lFnVea
Hello Richard,
Your suggestion worked perfectly.
Basically, I just copied and pasted your example
and with a few, very minor adjustments, it works beautifully.
Many thanks for your help.
All the best.
At 08:43 AM Thursday 9/29/2011, Richard Quadling wrote:
On 29 September 2011 13:30, PHPro
On 29 Sep 2011 at 13:30, PHProg wrote:
> I'm trying to create a standard web form that will use a PHP script
> to copy a file from one server to another.
[snip]
> if(!@copy('http://mydomain.com/files/".$_POST['trakname']."','/".$_POST['dirna
> me']."/".$_POST['trakname']."'))
This line:
On 29 September 2011 13:30, PHProg wrote:
> if(!@copy('http://mydomain.com/files/
>
> ".$_POST['trakname']."','/".$_POST['dirname']."/".$_POST['trakname']."'))
> {
> $errors= error_get_last();
> echo "COPY ERROR: ".$errors['type'];
> echo "\n".$errors['message'];
> } else {
> echo "Fi
I'm trying to create a standard web form that will use a PHP script
to copy a file from one server to another.
Both servers have the files in publicly accessible directories.
The html form I'm using follows...
Enter the filename you wish to copy.
Enter the directory at mydomain.net where
Ashley Sheridan wrote:
> On Thu, 2009-10-22 at 21:32 -0400, PJ wrote:
>> I have several input fields to update a book database. There seems to be
>> a conflict in the way tags and text are input through php/mysql and
>> phpMyAdmin. If I enter the data with phpMyAdmin the input fields in the
>> php
On Thu, 2009-10-22 at 21:32 -0400, PJ wrote:
> I have several input fields to update a book database. There seems to be
> a conflict in the way tags and text are input through php/mysql and
> phpMyAdmin. If I enter the data with phpMyAdmin the input fields in the
> php page see quotation marks dif
I have several input fields to update a book database. There seems to be
a conflict in the way tags and text are input through php/mysql and
phpMyAdmin. If I enter the data with phpMyAdmin the input fields in the
php page see quotation marks differently than what is input in phpMyAdmin.
example:
if
Hello All,
?I'm doing a POST using httpwebrequest in a Pocket PC C# application to send a
file over a stream buffer to a php page on an Apache server. I'm able to not
only get ?variablename=value via a $_REQUEST, but also the entire file over
php://input.
It all works, I'm jus
http://us2.php.net/manual/en/features.file-upload.put-method.php
Hello All,
?I'm trying to use a PUT request to send files to a server. I'm wondering if
there's a way to return something like a pass/fail code to the stream to catch
on the other side.
?PHP side I'm using the code in the Example
Ronald Wiplinger wrote:
I added just into a input field"
19" enclosure
which was displayed from the database as:
19\" enclosure
That gives me some questions:
1. where the protecting slash comes from?
Probably magic_quotes_gpc
2. how can I get it away when I want to display that field?
elley
-Original Message-
From: Ronald Wiplinger [mailto:[EMAIL PROTECTED]
Sent: Wednesday, November 14, 2007 9:52 AM
To: PHP General list
Subject: [PHP] Input field
I added just into a input field"
19" enclosure
which was displayed from the database as:
19\" enclosure
That gives
I added just into a input field"
19" enclosure
which was displayed from the database as:
19\" enclosure
That gives me some questions:
1. where the protecting slash comes from?
2. how can I get it away when I want to display that field?
3. The slash is not to see in phpmyadmin, why not?
and:
On 11/4/07, Mackatack <[EMAIL PROTECTED]> wrote:
>
> I have not defined any tags in my httpd.conf and by default
> apache should accept all request methods. I've stripped my apache config
> down to:
>
> Listen 80
> NameVirtualHost *:80
>
> ServerName my.server.com
> DocumentRoot
Jim Lucas schreef:
Mackatack wrote:
Nathan Nobbe schreef:
On 11/3/07, Mackatack <[EMAIL PROTECTED]> wrote:
Hey all!
Im trying to submit a very basic form to phpinfo():
readfile: ';
readfile("php://input")
phpinfo();
?>
When i
Mackatack wrote:
Nathan Nobbe schreef:
On 11/3/07, Mackatack <[EMAIL PROTECTED]> wrote:
Hey all!
Im trying to submit a very basic form to phpinfo():
readfile: ';
readfile("php://input")
phpinfo();
?>
When i use the button to subm
Nathan Nobbe schreef:
On 11/3/07, Mackatack <[EMAIL PROTECTED]> wrote:
Hey all!
Im trying to submit a very basic form to phpinfo():
readfile: ';
readfile("php://input")
phpinfo();
?>
When i use the button to submit the form and it
On 11/3/07, Mackatack <[EMAIL PROTECTED]> wrote:
>
> Hey all!
>
> Im trying to submit a very basic form to phpinfo():
>
>
>
>
>
> error_reporting(E_ALL);
> echo 'var_dump: ';
> var_dump($_POST);
Hey all!
Im trying to submit a very basic form to phpinfo():
readfile: ';
readfile("php://input")
phpinfo();
?>
When i use the button to submit the form and it loads the new page I get:
var_dump: array(0) { }
readfile: foo=bar
Save us a lot of grief and just use PHP built-in sessions until you
can prove them to not meet your needs.
On Sat, February 24, 2007 7:48 pm, benifactor wrote:
> i would like your input on session vs cookies regarding login data
> like usernames/passwords ect...
--
Some people have a "gift" l
On Sat, 2007-02-24 at 20:05 -0800, benifactor wrote:
> as of right now, when the user logs in, i have a cookie storing username...
> then on all of the pages i need data i have it query the database and using
> the cookie data to retrieve user information.. is there a more secure way to
> do this?
as of right now, when the user logs in, i have a cookie storing username...
then on all of the pages i need data i have it query the database and using
the cookie data to retrieve user information.. is there a more secure way to
do this?
--
PHP General Mailing List (http://www.php.net/)
To unsubs
i would like your input on session vs cookies regarding login data
like usernames/passwords ect...
usernames/passwords ? Session yes, cookies no.
tedd
--
---
http://sperling.com http://ancientstones.com http://earthstones.com
--
PHP General Mailing List (http://www.php.net/)
To unsubscr
On Sat, 2007-02-24 at 17:48 -0800, benifactor wrote:
> i would like your input on session vs cookies regarding login data like
> usernames/passwords ect...
How are you differentiating sessions vs cookies? Sessions are often
implemented USING cookies. If you mean sessions using a session ID in
the
i would like your input on session vs cookies regarding login data like
usernames/passwords ect...
Warren Vail wrote:
> I would be interested to know what might get past the
> addslashes function that the mysql_escape_string function
> catches.
I wrote an example to demonstrate this:
http://shiflett.org/archive/184
The theory behind this type of problem is pretty easy to understand - if
your
Richard Lynch wrote:
> On Thu, August 10, 2006 1:54 pm, Jochem Maas wrote:
>> Warren Vail wrote:
>>> Many of the older PHP implementations don't have the
>>> mysql_escape_string
>>> function, if not addslashes should work
>> this is true.
>>
>>> I would be interested to know
>>> what might get
On Thu, August 10, 2006 1:54 pm, Jochem Maas wrote:
> Warren Vail wrote:
>> Many of the older PHP implementations don't have the
>> mysql_escape_string
>> function, if not addslashes should work
>
> this is true.
>
>> I would be interested to know
>> what might get past the addslashes function
; Cc: 'João Cândido de Souza Neto'; php-general@lists.php.net
>> Subject: Re: [PHP] INPUT
>>
>> Warren Vail wrote:
>>> Just happened to think of one other thing you might want to
>> be aware
>>> of;
>>>
>>> When a query behaves
lashes() because they are far more robust and clever functions dedicated to
proper escaping of data to be put into a query.
>
> Warren Vail
>
>
>> -Original Message-
>> From: João Cândido de Souza Neto [mailto:[EMAIL PROTECTED]
>> Sent: Thursday, August 10,
rom: Jochem Maas [mailto:[EMAIL PROTECTED]
> Sent: Thursday, August 10, 2006 11:31 AM
> To: Warren Vail
> Cc: 'João Cândido de Souza Neto'; php-general@lists.php.net
> Subject: Re: [PHP] INPUT
>
> Warren Vail wrote:
> > Just happened to think of one othe
27;t be surprised if it worked
:-/
see: htmlentities() or htmlspecialchars()
>
> Good luck,
>
> Warren Vail
>
>
>> -Original Message-
>> From: João Cândido de Souza Neto [mailto:[EMAIL PROTECTED]
>> Sent: Thursday, August 10, 2006 11:11 AM
>&g
do de Souza Neto [mailto:[EMAIL PROTECTED]
> Sent: Thursday, August 10, 2006 11:11 AM
> To: php-general@lists.php.net
> Subject: [PHP] INPUT
>
> Hi everyone,
>
> Excuse me by off-topic.
>
> I´ve been a little trouble in showing data in html form.
>
> e.g.: In
João Cândido de Souza Neto wrote:
> Hi everyone,
>
> Excuse me by off-topic.
why; are you writing the app in ASP or something? ;-)
>
> I´ve been a little trouble in showing data in html form.
>
> e.g.: In a e-commerce my client have a "Sony 29" TV" that when i put it in a
> input value, it see
http://us3.php.net/manual/en/function.addslashes.php
Good luck,
Warren Vail
> -Original Message-
> From: João Cândido de Souza Neto [mailto:[EMAIL PROTECTED]
> Sent: Thursday, August 10, 2006 11:11 AM
> To: php-general@lists.php.net
> Subject: [PHP] INPUT
&
Hi everyone,
Excuse me by off-topic.
I´ve been a little trouble in showing data in html form.
e.g.: In a e-commerce my client have a "Sony 29" TV" that when i put it in a
input value, it seems just "Sony 29" it´s caused by the quote in the data,
someone knows how can i fix it?
Thanks all.
-
I think the attribute is called maxlength but i'm not sure, oh well add the
maxlength attribute to your input tag to have a quick, clean
non-javascript-realiant solution
On 1/12/06, John Meyer <[EMAIL PROTECTED]> wrote:
>
> Stut wrote:
> > Ok, you're clearly missing my point and while I don't wa
Stut wrote:
Ok, you're clearly missing my point and while I don't want this to
degrade into the usual pissing contest I do feel I need to clarify
what I was saying.
I completely agree that in this case Javascript should be used to
provide the user with feedback as to how close to the limit th
[EMAIL PROTECTED] wrote:
I disagree... PHP frequently involves interacting with or outright using
alternative technologies to accomplish your goal. This includes HTML, XML,
databases, etc. To effectively use PHP you need to understand your options and
the pros/cons in using the other techn
[EMAIL PROTECTED] wrote:
Hmm.. I didn't see anyone ask "before or after the user clicks SUBMIT"?
Probably because this is a PHP list and nothing that happens on the
client side is a) controllable by PHP or b) guaranteed. Whatever you do
on the client side you should always validate anythi
Hmm.. I didn't see anyone ask "before or after the user clicks SUBMIT"?
If it's before, then you should use javascript to check the form element prior
to submitting (you can check realtime with the onkeydown, onkeyup events...
check after a user moves off of the form element with onchange or ev
On Thu, 12 Jan 2006 16:56:43 +0200
"William Stokes" <[EMAIL PROTECTED]> wrote:
>
> Hello,
>
> I need to check that user input text is less than 300 characters
> long. How?
if(strlen($UserInputText) > 300){
echo("Too long");
}
See http://www.php.net/manual/en/print/function.strlen.php
R
I need to check that user input text is less than 300 characters
long. How?
if (strlen($_POST['input']) < 300) { ...
You may want to also apply trim() to the input text to get rid of
extraneous white space at the beginning and end of the input.
Larry
--
PHP General Mailing List (http://ww
William Stokes wrote:
> Hello,
>
> I need to check that user input text is less than 300 characters long. How?
>
> Thanks
> -Will
>
Try with strlen:
http://php.net/strlen
Silvio
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
[snip]
I need to check that user input text is less than 300 characters long. How?
[/snip]
string length, it's in the manual.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Hello,
I need to check that user input text is less than 300 characters long. How?
Thanks
-Will
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
> > setting a VALUE="path/file" but that
> > does not work.
> As far as I know, you
> can't set the initial values for 'file' inputs.
> It's a security thing.
H, you're right,saw the same thing on google after digging a little
deeper, thanks mate.
Cheers,
Ryan
--
PHP General Mailing Li
Ryan A wrote:
Hey,
Heres what I am doing, I have a form where a user can enter values and in
the form I have a FILE box so the
user can upload her pic, if she screws up anywhere (eg: putting an alphabet
in her date of birth) I send her back
to the form and her date of birth gets highlighted plus
Hey,
Heres what I am doing, I have a form where a user can enter values and in
the form I have a FILE box so the
user can upload her pic, if she screws up anywhere (eg: putting an alphabet
in her date of birth) I send her back
to the form and her date of birth gets highlighted plus the value she
e
What are you trying to accomplish?
Tom
On 7/28/05, Sonia <[EMAIL PROTECTED]> wrote:
>
> Hi
>
> Will HTTP_RAW_POST_DATA (php://input) multipart ever be supported?
>
> I have asked this question a few times and was told it would not happen
> until around php
Hi
Will HTTP_RAW_POST_DATA (php://input) multipart ever be supported?
I have asked this question a few times and was told it would not happen
until around php 4.3 release. Although I do appreciate the PHP teams added
support for all the other (PUT/POST) methods when dealing with the input
stream
Rajesh Batchu wrote
_outputStream.flush();
_outputStream.close();
// receive response
_inputStream = new DataInputStream(new BufferedInputStream(_httpsConnection.getInputStream()));
OT: if you close the outputstream from URLConnection you will not be
able to read the
to capture the data that is posted by the java code above in my php page. I am not getting the value in any of the standard variables.
Can some one suggest me how i should read the data..
Thanks in advance,
Regards,
Rajesh B.
http://sk2.php.net/manual/en/wrappers.php.php
php://input allows you t
Hi,
I have a page with SSL enables as below.
https://email.website.com/usrfolder/one.php
For this page, my customer is posting some XML data using a java output stream as
below. ( pseudo code)
URL url = new URL(_url);
_httpsConnection= (HttpsURLConnection) url.openConnectio
--- Pablo Gosse <[EMAIL PROTECTED]> wrote:
> It's obviously best practice to rigorously check and validate all input
> coming via $_GET or $_POST, but what about $_SESSION values?
Session data can be considered safe, but there are of course caveats. It
is not possible for the user to manipulate se
Hi all. A quick question as an extension to the threads about input
validation over the past weeks.
It's obviously best practice to rigorously check and validate all input
coming via $_GET or $_POST, but what about $_SESSION values?
Without proper checking of $_GET and $_POST, it is very easy fo
Can anyone share about how to use php://input instead of
$HTTP_RAW_POST_DATA ?
__
Mau ringtones yang gaya ? --> http://www.ponselgaya.com
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.
PHP is server side, it has nothing to do with client side, aside from
server up some information. You can, and should, validate the input
using PHP after it is submitted.
For client side validation you would need to use javascript. You can do
what you are trying to do in javascript, but it will
Javascript is your answer.
Cheers,
-Ryan
We will slaughter you all! - The Iraqi (Dis)information ministers site
http://MrSahaf.com
- Original Message -
From: "Bobpilly" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, September 12, 2003 11:20 AM
Subj
Hello all
I am trying to enforce input masks for dates that are viewable in a single
html text box. For example i would like a single tect box that the user will
see ##/##/ in and when they click on the field they will only be able to
enter digits in the ## areas the / will remain. Is php c
http://www.interactivetools.com/products/htmlarea/
this is not concerning php but javascript
-Mensaje original-
De: Todd Cary [mailto:[EMAIL PROTECTED]
Enviado el: domingo, 31 de agosto de 2003 21:18
Para: [EMAIL PROTECTED]
Asunto: [PHP] Input area allowing text formatting
I would like
I would like to provide the surfer with a text input area that would
give a means of using bold, underline and different text colors. Can
this be done with PHP?
Todd
--
<>
I have a script that contains a form which goes to page1.php on the
click of a submit button. Inside the form are lots of checkboxes and
things to fill out that get passed to page1.php. I want to put another
button in there that send all the same names and values of the
checkboxes to page2.php.
Hi Everyone,
I wrote a routine "postrawdata.php" for displaying HTTP raw request message.
It works properly when using a socket program to post something to it.
But submitting from a simple HTML below will make it dead, I have tested it under
IE 6.0 and Netscape 7.0 , any suggestion is appreci
Well, in the process of pulling out some code into a sample page to
send to the list I found the problem. It was yesterday when someone who
was testing it told me about the problem, but the problem must have
been going on for a week, because a week ago I added code to a global
include script th
On Tuesday 21 January 2003 23:03, Jason Wong wrote:
> Undo any configuration changes made recently, downgrade any recent upgrades
> etc. To paraphrase Newtown's First Law of Motion:
Sorry, "Newton's First Law of Motion" :)
> "Any working system tends to remain in that state unless external force
On Tuesday 21 January 2003 22:33, Dan Delaney wrote:
> Hi every body. I have a form that was originally working just fine. It
> had a series of input checkboxes with the same name ("interests[]").
> These values then ended up in an array ($_POST['interests']), which I
> then imploded into a comma s
"Rick Emery" <[EMAIL PROTECTED]> wrote in message
024801c2c15b$1a770e70$0500a8c0@honeybee">news:024801c2c15b$1a770e70$0500a8c0@honeybee...
> show us code
Learn how to quote. :)
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
show us code
- Original Message -
From: "Dan Delaney" <[EMAIL PROTECTED]>
To: <>
Sent: Tuesday, January 21, 2003 8:33 AM
Subject: [PHP] Input field array ends up as "Array" string
Hi every body. I have a form that was originally working just fine. It
Hi every body. I have a form that was originally working just fine. It
had a series of input checkboxes with the same name ("interests[]").
These values then ended up in an array ($_POST['interests']), which I
then imploded into a comma separated list ($interests = implode(', ',
$_POST['interes
>
>
>onclick = "document.all['tree'].status[].value='expand';
No matter what you do, JavaScript will *NEVER* accept the [ or ] character
as part of a field's NAME.
Those are RESERVED keys in JavaScript.
You'll have to refer to the INPUT by NUMBER, rather htan name.
onClick = "document.all.tre
I'm trying to create input
boxes on the fly by using php variables:PHP:so that will create:then i'm trying to set the
value to something else using:document.all['tree'].status[1].value='expand';but i'm getting a an
error on page dialog saying:'document.all.tree.status.0 is null or not
an obj
Hi,
I am designing a php program running in Linux, i would like to know can i
design a program by adding permeter after the file name?
Just like the following, "adding.php" is the filename and "123" ,"456" is
the data which i want to input for the program?
[root@localhost bin]# php adding.php 1
On Wednesday 13 March 2002 21:07, Rick Emery wrote:
> Nope, that's not the problem. the $_POST[] is NOT inside single-quotes.
> The problem is he used commas before and after the $_POST[].
You can use commas to separate expressions when using echo. So that's not the
problem. AFAICS the code *i
On Wednesday 13 March 2002 21:02, Edward van Bilderbeek - Bean IT wrote:
> the single quotes you use for your echo indicate that the variable in your
> echoed string won't be parsed double quotes indicate that it will be
> parsed...
>
> e.g.
>
> $test = 1
>
> echo '$test' // prints: $test
>
t: Re: [PHP] input
the single quotes you use for your echo indicate that the variable in your
echoed string won't be parsed double quotes indicate that it will be
parsed...
e.g.
$test = 1
echo '$test' // prints: $test
echo "$test" // prints: 1
Greets,
Edward
&g
On Wednesday 13 March 2002 20:54, John Gurley wrote:
> hello,
> Someone was kind enough to give me this code for sending a value from
> one page to another, but it doesn't work. I wonder if anyone can see
> anything wrong:
>
> echo '
>
> ';
> ?>
>
> I want to pass $inp to another pagee.
Ple
the single quotes you use for your echo indicate that the variable in your
echoed string won't be parsed double quotes indicate that it will be
parsed...
e.g.
$test = 1
echo '$test' // prints: $test
echo "$test" // prints: 1
Greets,
Edward
>
> > hello,
> > Someone was kind enough
';
?>
-Original Message-
From: John Gurley [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, March 13, 2002 6:55 AM
To: [EMAIL PROTECTED]
Subject: [PHP] input
hello,
Someone was kind enough to give me this code for sending a value from
one page to another, but it doesn't w
hello,
Someone was kind enough to give me this code for sending a value from
one page to another, but it doesn't work. I wonder if anyone can see
anything wrong:
';
?>
I want to pass $inp to another pagee.
Thanks In advance
John
__
I have my data in a text file delimited by tabs
One field contains :
https://www.paypal.com/cart/add=1&business=%.net&item_name=xx+xx+xx&item_number=85&amount=4.95','cartwin','width=600,height=
400,scrollbars,location,resizable,status');">http://images.paypal.com/images/xx-xx-xx.gi
Dear Philip,
Thank you very much,
I have lost long time proving different alternatives that it's better
not to implement. I prefer a safe code.
Thanks again!.
Cheers
Silvia Mahiques
"Philip Olson" <[EMAIL PROTECTED]> escribió en el mensaje
Pine.BSF.4.10.10
It is possible to utilize a VALUE attribute with a FILE type input
field. Even the specs at Blooberry list "value" as an attribute of the
input type=file field. I double-checked at w3c.org to make sure, though,
and found the information repeated there. I even checked my O'Reilly book
on XHT
This is not possible. Default values cannot be set with type=file as if it
were it would be quite a security risk.A little more information on
the capability of this html form element:
http://www.blooberry.com/indexdot/html/tagpages/i/inputfile.htm
And a related RFC :
http://www.faqs.or
Hi,
I can't print a default value in a INPUT tag with TYPE=file. INPUT tag has value
attribute, but it not apear in window box.
.
How can I print a default value?
Thanks,
Silvia Mahiques
I realize that this isn't a PHP issue, but I'd like find out they
why's/wherefore's of this:
The W3C HTM 4x spec(s) say that when using the file type on a form
input element, "User agents may use the value of the value attribute
as the initial file name."
I can't get Mozilla, Netscape, nor IE to
Hi
I am hoping someone on the list can save me from the grief of an OS
re-install.
I carelessly allowed the disk on my Red Hat 6.2 server to fill up. I have
fixed the damage, apart from Apache. Here is the problem
When the disk was full, Apache keeled over logging the error:
"input buffer
t; <[EMAIL PROTECTED]>
Newsgroups: php.general
Sent: Monday, March 05, 2001 9:27 AM
Subject: [PHP] input textfield value cat!
> Hi!
> i'm storing values in session variables, when i get a value wich is a
> sequence of words seperated by space, it echoes successfully but when i
On Mon, 5 Mar 2001, kaab kaoutar wrote:
> I'm using a variable!
> >
Quote the value:
\">
Greets,
Batonik
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators,
On Monday 05 March 2001 17:29, you wrote:
> I'm using a variable!
> >
Well, you *still* need to have quotes around it:
> >Make sure you have quotes around the value.
> >
> >
--
Christian Reiniger
LGDC Webmaster (http://sunsite.dk/lgdc/)
...to paraphrase Churchill, while representative demo
I'm using a variable!
>
>From: "Brad S. Jackson" <[EMAIL PROTECTED]>
>To: "kaab kaoutar" <[EMAIL PROTECTED]>
>Subject: Re: [PHP] input textfield value cat!
>Date: Mon, 5 Mar 2001 10:08:21 -0600
>
>
>
>Make sure you have quot
Hi!
i'm storing values in session variables, when i get a value wich is a
sequence of words seperated by space, it echoes successfully but when i try
to initialize the value of an input textfield with it i got only the first
word! i tried to encode decode but no way !
Thanks
_
alm
Canvas, 3D, Graphics,
ColdFusion, PHP, and mySQL
http://www.wizaerd.com
=
> -Original Message-
> From: Jerry Lake [mailto:[EMAIL PROTECTED]]
> Sent: Friday, February 16, 2001 5:16 PM
> To: [EMAIL PROTECTED]
> Subject: RE: [PHP] input type=fil
, 2001 4:16 PM
To: [EMAIL PROTECTED]
Subject: RE: [PHP] input type=file
so then maybe, if I understand it correctly
(which may or may not be true) I could read
the contents or a directory and populate a
dropdown list...?
Jerry Lake- [EMAIL PROTECTED]
Web Designer
Europa Communications
-Original Message-
From: Joe Sheble (Wizaerd) [mailto:[EMAIL PROTECTED]]
Sent: Friday, February 16, 2001 4:16 PM
To: [EMAIL PROTECTED]
Subject: RE: [PHP] input type=file
to put it simply, you can't...
but you could put an input type of text with a link or a button next to it
man
oseph E. Sheble
a.k.a. Wizaerd
Wizaerd's Realm
Canvas, 3D, Graphics,
ColdFusion, PHP, and mySQL
http://www.wizaerd.com
=
> -Original Message-
> From: Jerry Lake [mailto:[EMAIL PROTECTED]]
> Sent: Friday, February 16, 2001 4:57 PM
> To: [
this doesn't relate directly to PHP,
but it will when I am done.
How can I create a file input that
reads from a directory on the server
instead of the users machine
Jerry Lake- [EMAIL PROTECTED]
Web Designer
Europa Communications - http://www.europa.com
Pacifier Online - http://
> When a form is submitted from an image (e.g. ) this
> will be passed in the URL as paging.x=SOME_NUMBER. If I try and
> access this variable as ${paging.x} in the subsequent PHP script
> I get nothing. How can I access this variable? all I want to do
> is test for it's existance ? Simple as
1 - 100 of 103 matches
Mail list logo