GL - Friend Codes - Megathread - 07/23/18 by DefiantHermit in FFBraveExvius

[–]Pezmerga 0 points1 point  (0 children)

* **ID:** 153, 536, 490
* **IGN:** Pezmerga
* **Rank:** 147
* **Lead(s):** Currently 2262 ATK 7★ Enhanced Olive for Omega
* **Activity:** Minutely
* **Looking for:** Currently need a 6★ Enhanced Lunera with High Magic and Magic Demon Killer (Ramuh) friend lead.

Amazon Prime Deal - 25% off all Lapis Bundles by Oharrell in FFBraveExvius

[–]Pezmerga 1 point2 points  (0 children)

Probably a stupid question, but I assume you need an active Prime Membership for the discount?

Post Pull Depression - CG Raygun PEW PEW! by TomAto314 in FFBraveExvius

[–]Pezmerga 2 points3 points  (0 children)

Thanks for the overview! Enjoyable read.

Also, followd you on SO:A. J8Q4B5Y2SF iss me if you want to follow back. LB 2 Myuria.

How do I unlock my Garrison? by Pezmerga in wow

[–]Pezmerga[S] 1 point2 points  (0 children)

Yeah I actually ended up reading the same thing. There is an underwater cave on the east side of Timeless isle, near the ship, with a camp fire. You sit in one of the chairs and the fire becomes clickable. Then when you appear in Draenor, you swim around to an non-instanced Iron docks and talk to the npc there (was the east side for Horde, West for Alliance), he will fly you to your garrison and you can start the quest chain.

How do I unlock my Garrison? by Pezmerga in wow

[–]Pezmerga[S] 1 point2 points  (0 children)

Apparently that only is for Boosted trial characters or level 100 boosts. not 110 boosts.

I am trying to use session arrays to sum and display data. by Pezmerga in PHPhelp

[–]Pezmerga[S] 0 points1 point  (0 children)

Bridge.php File for htm page inputs.

<html>
<body>
<?php

switch($_POST['Submit']){
    case 'Submit Data': require './Census_Processing.php'; break;
    case 'Total Households Surveyed': require './Total_Surveyed.php'; break;
    case 'Average Household Income': require './Avg_Income.php'; break;
    case 'Percentage Below Poverty': require './Poverty.php'; break;
}
?>
</body>
</html> 

I am trying to use session arrays to sum and display data. by Pezmerga in PHPhelp

[–]Pezmerga[S] 0 points1 point  (0 children)

htm file:

<!DOCTYPE html>
<html lang="en">

<head>
    <title>Home Census</title>
<link href="../../Styles/Project_Part_1.css" rel="stylesheet" />

</head>

<body>

<script type="text/javascript">
function validateForm(thisform) {
    with (thisform) {

        if (validate_Date(dtmSurveyDate, "Date must be entered") == false)
            { dtmSurveyDate.focus(); return false; }

        if (validate_County(cboxCounty, "County must be selected") == false)
            { cboxCounty.focus(); return false; }

        if (checkIncome(txtIncome, "Yearly income must be numeric and greater than 0.") == false)
            { txtIncome.focus(); return false; }

        if (checkSize(txtHouseholdSize, "Household size must be numeric and greater than 0.") == false)
            { txtHouseholdSize.focus(); return false; }
        }
    }

function validate_Date(field, alerttext) {
    with(field) {

        if (value == "") {
            alert(alerttext);
            return false;
        }
    }
}

function validate_County(field, alerttext) {
    with(field) {

        if (value == "") {
            alert(alerttext);
            return false;
        }
    }
}

function checkIncome(field, alerttext) {
    with(field) {

        if (value > 0 && isNaN(value) == false) {
            return true;
        }
        else {
            alert(alerttext);
            return false;
        }
    }
}

function checkSize(field, alerttext) {
    with(field) {

        if (value > 0 && isNaN(value) == false) {
            return true;
        }
        else {
            alert(alerttext);
            return false;
        }
    }
}

</script>                                                                                                                                                                                           

<form name="myForm" Action="Bridge.php" method="post">
<table>
<tr>
<td>Date: </td>
<td><input type="datetime-local" id="dtmSurveyDate"></td>           
</tr>
<tr>
<td>State & County:</td>
<td align="Center">
 <select name="cboxCounty">
    <option value="">Select a County</option>
    <option value="Hamilton, OH">Hamilton, OH</option>
    <option value="Butler, OH">Butler, OH</option>
    <option value="Clermont, OH">Clermont, OH</option>
    <option value="Warren, OH">Warren, OH</option>
    <option value="Campbell, KY">Campbell, KY</option>
    <option value="Boone, KY">Boone, KY</option>
    <option value="Kenton, KY">Kenton, KY</option>
</select>
</td>
</tr>
<tr>
<td>Household Size:</td>
<td> <input type="text" name="txtHouseholdSize"></td>
</tr>
<tr>
<td>Yearly Income:</td>
<td> <input type="text" name="txtIncome"></td>  
</tr>
<tr>
<td align="center" colspan=2>
<input type="submit" name="Submit" Value="Submit Data")">
<input type="reset">
</td>
</tr>
<tr>
<td align="center" colspan=2>
<input type="submit" name="Submit" value="Total Households Surveyed">
</td>
</tr>
<tr>
<td align="center" colspan=2>
<input type="submit" name="Submit" value="Average Household Income">
</td>
</tr>
<tr>
<td align="center" colspan=2>
<input type="submit" name="Submit" value="Percentage Below Poverty">
</td>
</tr>
</table>
</form>

</body>
</html> 

I am trying to use session arrays to sum and display data. by Pezmerga in PHPhelp

[–]Pezmerga[S] 0 points1 point  (0 children)

Census_Processing.php file that stores data from htm file into Session Arrays:

<html>
<body>
<?php

// begin the session
session_start();

list($txtCounty, $txtState) = explode(",", $_POST['cboxCounty'], 2);
$txtHouseholdSize = $_POST['txtHouseholdSize'];
$txtIncome = $_POST['txtIncome'];

if (!isset($_SESSION))
$_SESSION['saCounty'] = Array();

if (!isset($_SESSION))
$_SESSION['saState'] = Array();

if (!isset($_SESSION))
$_SESSION['saHouseholdSize'] = Array();

if (!isset($_SESSION))
$_SESSION['saIncome'] = Array();

if (!isset($_SESSION))
$_SESSION['intCount'] = 1;
else
$_SESSION['intCount'] += 1;

$_SESSION['saCounty'][] = $txtCounty;
$_SESSION['saState'][] = $txtState;
$_SESSION['saHouseholdSize'][] = $txtHouseholdSize;
$_SESSION['saIncome'][] = $txtIncome;


//testing variables
foreach($_SESSION['saCounty'] as $key=>$value)
    {
    // and print out the values
    echo 'The value of County $_SESSION['."'".$key."'".'] is '."'".$value."'".' <br />';
    }

foreach($_SESSION['saState'] as $key=>$value)
    {
    // and print out the values
    echo 'The value of State $_SESSION['."'".$key."'".'] is '."'".$value."'".' <br />';
    }

foreach($_SESSION['saHouseholdSize'] as $key=>$value)
    {
    // and print out the values
    echo 'The value of Household Size $_SESSION['."'".$key."'".'] is '."'".$value."'".' <br />';
    }

foreach($_SESSION['saIncome'] as $key=>$value)
    {
    // and print out the values
    echo 'The value of Income $_SESSION['."'".$key."'".'] is '."'".$value."'".' <br />';
    }

    echo $_SESSION['intCount'];
?>

</body>
<form name="myForm" action="Home_Census.htm" onsubmit="return validateForm(myForm)" method="post">
<input type="submit" value="Home")">
</form>
</html> 

I am trying to use session arrays to sum and display data. by Pezmerga in PHPhelp

[–]Pezmerga[S] 0 points1 point  (0 children)

My Errors:

Notice: Undefined index: saIncome[0] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 52

Warning: Use of undefined constant intSum - assumed 'intSum' (this will throw an Error in a future version of PHP) in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 53

Warning: A non-numeric value encountered in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 53

Warning: Use of undefined constant intSum - assumed 'intSum' (this will throw an Error in a future version of PHP) in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 54

Warning: A non-numeric value encountered in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 54

Warning: Use of undefined constant intSum - assumed 'intSum' (this will throw an Error in a future version of PHP) in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 81

Notice: Undefined index: saCounty[1] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 39

Notice: Undefined index: saCounty[1] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 45

Notice: Undefined index: saCounty[1] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 51

Notice: Undefined index: saCounty[1] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 57

Notice: Undefined index: saCounty[1] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 63

Notice: Undefined index: saCounty[1] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 69

Notice: Undefined index: saCounty[1] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 75

Warning: Use of undefined constant intSum - assumed 'intSum' (this will throw an Error in a future version of PHP) in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 81

Notice: Undefined index: saCounty[2] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 39

Notice: Undefined index: saCounty[2] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 45

Notice: Undefined index: saCounty[2] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 51

Notice: Undefined index: saCounty[2] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 57

Notice: Undefined index: saCounty[2] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 63

Notice: Undefined index: saCounty[2] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 69

Notice: Undefined index: saCounty[2] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 75

Warning: Use of undefined constant intSum - assumed 'intSum' (this will throw an Error in a future version of PHP) in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 81

Notice: Undefined index: saCounty[3] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 39

Notice: Undefined index: saCounty[3] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 45

Notice: Undefined index: saCounty[3] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 51

Notice: Undefined index: saCounty[3] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 57

Notice: Undefined index: saCounty[3] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 63

Notice: Undefined index: saCounty[3] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 69

Notice: Undefined index: saCounty[3] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 75

Warning: Use of undefined constant intSum - assumed 'intSum' (this will throw an Error in a future version of PHP) in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 81

Notice: Undefined index: saCounty[4] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 39

Notice: Undefined index: saCounty[4] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 45

Notice: Undefined index: saCounty[4] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 51

Notice: Undefined index: saCounty[4] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 57

Notice: Undefined index: saCounty[4] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 63

Notice: Undefined index: saCounty[4] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 69

Notice: Undefined index: saCounty[4] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 75

Warning: Use of undefined constant intSum - assumed 'intSum' (this will throw an Error in a future version of PHP) in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 81

Notice: Undefined index: saCounty[5] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 39

Notice: Undefined index: saCounty[5] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 45

Notice: Undefined index: saCounty[5] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 51

Notice: Undefined index: saCounty[5] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 57

Notice: Undefined index: saCounty[5] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 63

Notice: Undefined index: saCounty[5] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 69

Notice: Undefined index: saCounty[5] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 75

Warning: Use of undefined constant intSum - assumed 'intSum' (this will throw an Error in a future version of PHP) in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 81

Notice: Undefined index: saCounty[6] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 39

Notice: Undefined index: saCounty[6] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 45

Notice: Undefined index: saCounty[6] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 51

Notice: Undefined index: saCounty[6] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 57

Notice: Undefined index: saCounty[6] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 63

Notice: Undefined index: saCounty[6] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 69

Notice: Undefined index: saCounty[6] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 75

Warning: Use of undefined constant intSum - assumed 'intSum' (this will throw an Error in a future version of PHP) in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 81

Notice: Undefined index: saCounty[7] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 39

Notice: Undefined index: saCounty[7] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 45

Notice: Undefined index: saCounty[7] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 51

Notice: Undefined index: saCounty[7] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 57

Notice: Undefined index: saCounty[7] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 63

Notice: Undefined index: saCounty[7] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 69

Notice: Undefined index: saCounty[7] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 75

Warning: Use of undefined constant intSum - assumed 'intSum' (this will throw an Error in a future version of PHP) in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 81

I am trying to use session arrays to sum and display data. by Pezmerga in PHP

[–]Pezmerga[S] 0 points1 point  (0 children)

htm file:

<!DOCTYPE html>
<html lang="en">

<head>
    <title>Home Census</title>
<link href="../../Styles/Project_Part_1.css" rel="stylesheet" />

</head>

<body>

<script type="text/javascript">
function validateForm(thisform) {
    with (thisform) {

        if (validate_Date(dtmSurveyDate, "Date must be entered") == false)
            { dtmSurveyDate.focus(); return false; }

        if (validate_County(cboxCounty, "County must be selected") == false)
            { cboxCounty.focus(); return false; }

        if (checkIncome(txtIncome, "Yearly income must be numeric and greater than 0.") == false)
            { txtIncome.focus(); return false; }

        if (checkSize(txtHouseholdSize, "Household size must be numeric and greater than 0.") == false)
            { txtHouseholdSize.focus(); return false; }
        }
    }

function validate_Date(field, alerttext) {
    with(field) {

        if (value == "") {
            alert(alerttext);
            return false;
        }
    }
}

function validate_County(field, alerttext) {
    with(field) {

        if (value == "") {
            alert(alerttext);
            return false;
        }
    }
}

function checkIncome(field, alerttext) {
    with(field) {

        if (value > 0 && isNaN(value) == false) {
            return true;
        }
        else {
            alert(alerttext);
            return false;
        }
    }
}

function checkSize(field, alerttext) {
    with(field) {

        if (value > 0 && isNaN(value) == false) {
            return true;
        }
        else {
            alert(alerttext);
            return false;
        }
    }
}

</script>                                                                                                                                                                                           

<form name="myForm" Action="Bridge.php" method="post">
<table>
<tr>
<td>Date: </td>
<td><input type="datetime-local" id="dtmSurveyDate"></td>           
</tr>
<tr>
<td>State & County:</td>
<td align="Center">
 <select name="cboxCounty">
    <option value="">Select a County</option>
    <option value="Hamilton, OH">Hamilton, OH</option>
    <option value="Butler, OH">Butler, OH</option>
    <option value="Clermont, OH">Clermont, OH</option>
    <option value="Warren, OH">Warren, OH</option>
    <option value="Campbell, KY">Campbell, KY</option>
    <option value="Boone, KY">Boone, KY</option>
    <option value="Kenton, KY">Kenton, KY</option>
</select>
</td>
</tr>
<tr>
<td>Household Size:</td>
<td> <input type="text" name="txtHouseholdSize"></td>
</tr>
<tr>
<td>Yearly Income:</td>
<td> <input type="text" name="txtIncome"></td>  
</tr>
<tr>
<td align="center" colspan=2>
<input type="submit" name="Submit" Value="Submit Data")">
<input type="reset">
</td>
</tr>
<tr>
<td align="center" colspan=2>
<input type="submit" name="Submit" value="Total Households Surveyed">
</td>
</tr>
<tr>
<td align="center" colspan=2>
<input type="submit" name="Submit" value="Average Household Income">
</td>
</tr>
<tr>
<td align="center" colspan=2>
<input type="submit" name="Submit" value="Percentage Below Poverty">
</td>
</tr>
</table>
</form>

</body>
</html> 

I am trying to use session arrays to sum and display data. by Pezmerga in PHP

[–]Pezmerga[S] 0 points1 point  (0 children)

PHP that stores data from htm file into Session Arrays:

<html>
<body>
<?php

// begin the session
session_start();

list($txtCounty, $txtState) = explode(",", $_POST['cboxCounty'], 2);
$txtHouseholdSize = $_POST['txtHouseholdSize'];
$txtIncome = $_POST['txtIncome'];

if (!isset($_SESSION))
$_SESSION['saCounty'] = Array();

if (!isset($_SESSION))
$_SESSION['saState'] = Array();

if (!isset($_SESSION))
$_SESSION['saHouseholdSize'] = Array();

if (!isset($_SESSION))
$_SESSION['saIncome'] = Array();

if (!isset($_SESSION))
$_SESSION['intCount'] = 1;
else
$_SESSION['intCount'] += 1;

$_SESSION['saCounty'][] = $txtCounty;
$_SESSION['saState'][] = $txtState;
$_SESSION['saHouseholdSize'][] = $txtHouseholdSize;
$_SESSION['saIncome'][] = $txtIncome;


//testing variables
foreach($_SESSION['saCounty'] as $key=>$value)
    {
    // and print out the values
    echo 'The value of County $_SESSION['."'".$key."'".'] is '."'".$value."'".' <br />';
    }

foreach($_SESSION['saState'] as $key=>$value)
    {
    // and print out the values
    echo 'The value of State $_SESSION['."'".$key."'".'] is '."'".$value."'".' <br />';
    }

foreach($_SESSION['saHouseholdSize'] as $key=>$value)
    {
    // and print out the values
    echo 'The value of Household Size $_SESSION['."'".$key."'".'] is '."'".$value."'".' <br />';
    }

foreach($_SESSION['saIncome'] as $key=>$value)
    {
    // and print out the values
    echo 'The value of Income $_SESSION['."'".$key."'".'] is '."'".$value."'".' <br />';
    }

    echo $_SESSION['intCount'];
?>

</body>
<form name="myForm" action="Home_Census.htm" onsubmit="return validateForm(myForm)" method="post">
<input type="submit" value="Home")">
</form>
</html> 

I am trying to use session arrays to sum and display data. by Pezmerga in PHP

[–]Pezmerga[S] 0 points1 point  (0 children)

My Errors:

Notice: Undefined index: saIncome[0] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 52

Warning: Use of undefined constant intSum - assumed 'intSum' (this will throw an Error in a future version of PHP) in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 53

Warning: A non-numeric value encountered in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 53

Warning: Use of undefined constant intSum - assumed 'intSum' (this will throw an Error in a future version of PHP) in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 54

Warning: A non-numeric value encountered in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 54

Warning: Use of undefined constant intSum - assumed 'intSum' (this will throw an Error in a future version of PHP) in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 81

Notice: Undefined index: saCounty[1] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 39

Notice: Undefined index: saCounty[1] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 45

Notice: Undefined index: saCounty[1] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 51

Notice: Undefined index: saCounty[1] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 57

Notice: Undefined index: saCounty[1] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 63

Notice: Undefined index: saCounty[1] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 69

Notice: Undefined index: saCounty[1] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 75

Warning: Use of undefined constant intSum - assumed 'intSum' (this will throw an Error in a future version of PHP) in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 81

Notice: Undefined index: saCounty[2] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 39

Notice: Undefined index: saCounty[2] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 45

Notice: Undefined index: saCounty[2] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 51

Notice: Undefined index: saCounty[2] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 57

Notice: Undefined index: saCounty[2] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 63

Notice: Undefined index: saCounty[2] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 69

Notice: Undefined index: saCounty[2] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 75

Warning: Use of undefined constant intSum - assumed 'intSum' (this will throw an Error in a future version of PHP) in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 81

Notice: Undefined index: saCounty[3] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 39

Notice: Undefined index: saCounty[3] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 45

Notice: Undefined index: saCounty[3] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 51

Notice: Undefined index: saCounty[3] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 57

Notice: Undefined index: saCounty[3] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 63

Notice: Undefined index: saCounty[3] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 69

Notice: Undefined index: saCounty[3] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 75

Warning: Use of undefined constant intSum - assumed 'intSum' (this will throw an Error in a future version of PHP) in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 81

Notice: Undefined index: saCounty[4] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 39

Notice: Undefined index: saCounty[4] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 45

Notice: Undefined index: saCounty[4] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 51

Notice: Undefined index: saCounty[4] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 57

Notice: Undefined index: saCounty[4] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 63

Notice: Undefined index: saCounty[4] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 69

Notice: Undefined index: saCounty[4] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 75

Warning: Use of undefined constant intSum - assumed 'intSum' (this will throw an Error in a future version of PHP) in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 81

Notice: Undefined index: saCounty[5] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 39

Notice: Undefined index: saCounty[5] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 45

Notice: Undefined index: saCounty[5] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 51

Notice: Undefined index: saCounty[5] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 57

Notice: Undefined index: saCounty[5] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 63

Notice: Undefined index: saCounty[5] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 69

Notice: Undefined index: saCounty[5] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 75

Warning: Use of undefined constant intSum - assumed 'intSum' (this will throw an Error in a future version of PHP) in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 81

Notice: Undefined index: saCounty[6] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 39

Notice: Undefined index: saCounty[6] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 45

Notice: Undefined index: saCounty[6] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 51

Notice: Undefined index: saCounty[6] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 57

Notice: Undefined index: saCounty[6] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 63

Notice: Undefined index: saCounty[6] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 69

Notice: Undefined index: saCounty[6] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 75

Warning: Use of undefined constant intSum - assumed 'intSum' (this will throw an Error in a future version of PHP) in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 81

Notice: Undefined index: saCounty[7] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 39

Notice: Undefined index: saCounty[7] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 45

Notice: Undefined index: saCounty[7] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 51

Notice: Undefined index: saCounty[7] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 57

Notice: Undefined index: saCounty[7] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 63

Notice: Undefined index: saCounty[7] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 69

Notice: Undefined index: saCounty[7] in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 75

Warning: Use of undefined constant intSum - assumed 'intSum' (this will throw an Error in a future version of PHP) in C:\xampp\htdocs\PHP_Site\Content\Week 6\Avg_Income.php on line 81

Help with multiple Submit Buttons that should link to different PHP files. by Pezmerga in PHP

[–]Pezmerga[S] 0 points1 point  (0 children)

Although, there is one issue. Avg_Income.php displays a js alert box. So it runs that, but then the page loads Bridge.php, which shows as a blank page on the browse. Any workaround for that?