Click here to Skip to main content
15,887,027 members
Home / Discussions / Web Development
   

Web Development

 
GeneralCombine area and line chart in report viewer Pin
piyush97175-Jun-13 2:35
piyush97175-Jun-13 2:35 
QuestionImensosoftware.com Any Error? Pin
David Kroj3-Jun-13 1:58
David Kroj3-Jun-13 1:58 
Questionmouseover button show date and time Pin
dijitalninja2-Jun-13 2:47
dijitalninja2-Jun-13 2:47 
AnswerRe: mouseover button show date and time Pin
Niral Soni3-Jun-13 3:13
Niral Soni3-Jun-13 3:13 
GeneralRe: mouseover button show date and time Pin
David Kroj7-Jun-13 20:56
David Kroj7-Jun-13 20:56 
AnswerRe: mouseover button show date and time Pin
harry~13-Jun-13 1:21
harry~13-Jun-13 1:21 
AnswerRe: mouseover button show date and time Pin
Bilashcse21-Jun-13 13:43
Bilashcse21-Jun-13 13:43 
QuestionUser input varification Pin
Tichaona J31-May-13 8:42
Tichaona J31-May-13 8:42 
I’ve written code (below) of which receives posted fields data on to the acknowledgement page (Subscribe page > Acknowledge page), however the code is not working as expected so I’ve removed the other code (mainly the sanitizing of user input) and left the code were the users input is checked for empty spaces. This still isn’t working...I’m a rooky, so any help is much appreciated

PHP
 if($_POST['username'] === "" ||$_POST['userfirstname']=== ""|| $_POST['usersecondname']=== ""||$_POST['useremail']=== ""||$_POST['userpassword']=== ""||
$_POST['userpasswordr']=== "")

{

$arr_fields = array("$_POST['username']", "$_POST['userfirstname']", "$_POST['usersecondname']", "$_POST['useremail']",
                    "$_POST['userpassword']", "$_POST['userpasswordr']");

foreach($arr_fields as $arr_field)
{

    if($arr_field == "")
        {
            $arr_field = "missing";

        }

}

    $var_username=          $_POST['username'];
    $var_userfirstname=     $_POST['userfirstname'];
    $var_usersecondname=        $_POST['usersecondname'];
    $var_useremail=         $_POST['useremail'];
    $var_userpassword=      $_POST['userpassword'];
    $var_userpassword_repeat=   $_POST['userpasswordr'];

    $arr_fields_processed = array("$var_username", "$var_userfirstname", "$var_usersecondname", "$var_useremail",
                     "$var_userpassword", "$var_userpassword_repeat");

    header ("location: subscribe.php?arr_fields_processed");

 } else


    {


        //sanitize code...

    }


Confused | :confused:
Questiondo i need windows azure sdk to use asp net mvc 4 in vs 2010 sp1 ? Pin
Daryoosh31-May-13 6:42
Daryoosh31-May-13 6:42 
AnswerRe: do i need windows azure sdk to use asp net mvc 4 in vs 2010 sp1 ? Pin
Bernard Grosperrin8-Jun-13 7:18
Bernard Grosperrin8-Jun-13 7:18 
QuestionHow do I create an RDLC report with two levels of grouping? Pin
Brady Kelly30-May-13 20:56
Brady Kelly30-May-13 20:56 
AnswerRe: How do I create an RDLC report with two levels of grouping? Pin
David Kroj23-Jun-13 23:21
David Kroj23-Jun-13 23:21 
QuestionDeployment on IIS7 without IIS6 Management Compatibility Pin
DoxMan29-May-13 1:52
DoxMan29-May-13 1:52 
Questionhtml : absurd behaviour Pin
tiwal27-May-13 11:43
tiwal27-May-13 11:43 
AnswerRe: html : absurd behaviour Pin
Graham Breach27-May-13 21:07
Graham Breach27-May-13 21:07 
GeneralRe: html : absurd behaviour Pin
tiwal28-May-13 9:41
tiwal28-May-13 9:41 
GeneralRe: html : absurd behaviour Pin
AspDotNetDev29-May-13 8:28
protectorAspDotNetDev29-May-13 8:28 
GeneralRe: html : absurd behaviour Pin
tiwal28-May-13 9:43
tiwal28-May-13 9:43 
AnswerRe: html : absurd behaviour Pin
Richard MacCutchan27-May-13 21:18
mveRichard MacCutchan27-May-13 21:18 
GeneralRe: html : absurd behaviour Pin
tiwal28-May-13 9:44
tiwal28-May-13 9:44 
GeneralRe: html : absurd behaviour Pin
Richard MacCutchan28-May-13 11:19
mveRichard MacCutchan28-May-13 11:19 
GeneralRe: html : absurd behaviour Pin
Jasmine250128-May-13 12:28
Jasmine250128-May-13 12:28 
GeneralRe: html : absurd behaviour Pin
Richard MacCutchan28-May-13 13:31
mveRichard MacCutchan28-May-13 13:31 
GeneralRe: html : absurd behaviour Pin
Manfred Rudolf Bihy29-May-13 3:38
professionalManfred Rudolf Bihy29-May-13 3:38 
GeneralRe: html : absurd behaviour Pin
Richard MacCutchan29-May-13 6:48
mveRichard MacCutchan29-May-13 6:48 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.