On Monday 29 November 2010,
"Ron Piggott" wrote:
> I am unable to retrieve the value of $referral_1 from:
Sorry, I did't see the name=email attribute. It should be
name="email[]", and you will get the data from the
$_REQUEST['email'] variable or $_POST['email'] as array.
If you want detaile
On Mon, Nov 29, 2010 at 18:54, Ron Piggott
wrote:
>
> $new_email = mysql_escape_string ( $_POST['referral_$i'] );
Because you're using literal quotes, so PHP is literally looking
for the POST reference 'referral_$i'.
Instead of using the style of field names you're using, why not
use a v
On Monday 29 November 2010,
"Ron Piggott" wrote:
> I am unable to retrieve the value of $referral_1 from:
That's very simple, you are missing the name attribute for
your input elements, for example:
Should be:
Please read the following links:
HTML Standards:
http://www.w3.org/standa
On Wed, May 23, 2007 11:40 am, Stephen wrote:
> I have a script to process the post from a form.
>
> The form is used to upload photos and has fields for the filename,
> alt text, caption and a checkbox to indicate if this photo is the
> main page image rotation.
>
> I wanted to build a gener
Tijnema wrote:
On 5/23/07, Stephen <[EMAIL PROTECTED]> wrote:
I have a script to process the post from a form.
The form is used to upload photos and has fields for the filename,
alt text, caption and a checkbox to indicate if this photo is the main
page image rotation.
I wanted to build a
On 5/23/07, Tijnema <[EMAIL PROTECTED]> wrote:
Again, this is Off topic,
/me rolls eyes
Do you even know what P-H-P stands for? HTML questions are not off
topic, especially form related ones.
--
Greg Donald
http://destiney.com/
--
PHP General Mailing List (http://www.php.net/)
To unsubscri
On 5/23/07, Stephen <[EMAIL PROTECTED]> wrote:
I have a script to process the post from a form.
The form is used to upload photos and has fields for the filename, alt text,
caption and a checkbox to indicate if this photo is the main page image
rotation.
I wanted to build a general routine
This worked perfectly. Thank you.
As for the FAQ, I looked, but I guess not in the right place!
Mike
"Tracy Finifter Rotton" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Change the name of your checkboxes in your HTML to something like:
>
> name="DeleteI
On Fri, 31 Jan 2003, Tracy Finifter Rotton wrote:
> Change the name of your checkboxes in your HTML to something like:
>
> name="DeleteIDs[]"
>
> This will make it an array, and you can access all the elements like
>
> $_POST['DeleteIDs'][0]
>
> etc.
>
> (This should really be in a FAQ somew
Change the name of your checkboxes in your HTML to something like:
name="DeleteIDs[]"
This will make it an array, and you can access all the elements like
$_POST['DeleteIDs'][0]
etc.
(This should really be in a FAQ somewhere...)
-- tracy
On 1/31/03 11:17 AM, "Mike Potter" <[EMAIL PROTECTED
I can't be sure without seeing everything, but you've most likely done
everything correct except for the post-processing HTML output...in other
words, if you're sending info to a php script, you have to output some HTML
at the end of the processing that gives the correct HTML layout and says for
i
11 matches
Mail list logo