Undefined Index: I have used this but the user still gets a page of notices, (about 70 in total) can someone help me with the coding here that will somehow check the empty string and still send it without the browser displaying a page of notices.
I am at a serious loss this end and I can't learn this is mins what has taken some people years to understand.
I have 2 problems with my script in PHP as I have tried to piece together bits.
all i want it to do is take the field data and send it to an email and send a reply to the field that has the users email in it and display a page that says thank-you when they hit submit.
I am so desperate this end as I'm so new to php and this was needed hours ago.
Or have I to pay a developer to get this done?
please help, I know people have read my posts but i'm not good enough to understand all this yet.
[code=php]<?php
$to = ( isset ($_REQUEST['sendto']) ? $_REQUEST['sendto'] : "default 'to' email goes here" );
$from = ( isset ($_REQUEST['Email']) ? $_REQUEST['sendto'] : "default 'from' email goes here" ) ;
$name = ( isset ($_REQUEST['Member_Name']) ? $_REQUEST['Member_Name'] : "Default member name goes here" ) ;
$headers = "From: $from";
$subject = "Members Data From RedSquareFinanc e.com";[/code]
If someone who read my previous posts is working on my problem thank-you.
I am at a serious loss this end and I can't learn this is mins what has taken some people years to understand.
I have 2 problems with my script in PHP as I have tried to piece together bits.
all i want it to do is take the field data and send it to an email and send a reply to the field that has the users email in it and display a page that says thank-you when they hit submit.
I am so desperate this end as I'm so new to php and this was needed hours ago.
Or have I to pay a developer to get this done?
please help, I know people have read my posts but i'm not good enough to understand all this yet.
[code=php]<?php
$to = ( isset ($_REQUEST['sendto']) ? $_REQUEST['sendto'] : "default 'to' email goes here" );
$from = ( isset ($_REQUEST['Email']) ? $_REQUEST['sendto'] : "default 'from' email goes here" ) ;
$name = ( isset ($_REQUEST['Member_Name']) ? $_REQUEST['Member_Name'] : "Default member name goes here" ) ;
$headers = "From: $from";
$subject = "Members Data From RedSquareFinanc e.com";[/code]
If someone who read my previous posts is working on my problem thank-you.
Comment