PHP Tolerance sorting by foreign key












0














I am trying to make a process control system and got into a problem that I yet haven't been able to solve, so thought I would ask for some help. I'll try to make it as simple as I can.



sry about the naming of the values it just to make it easier for me when I write it



Okay, I've got a pretty big form with a select in it that I want to be able to use, to be able to sort my tolerance.



<select class="form-control" name="type" id="exampleFormControlSelect4">
<?php foreach ($products->getAllType() as $type) { ?>
<option value="<?= @$type->type_id ?>" selected><?= @$type->type_name ?></option>
<?php } ?>
</select>


It's taking everything from a table called type_tb from my database using the getAllType() which looks like this



public function getAllType()
{
return $this->db->toList("SELECT * FROM type_tb");
}


inside the form, I also got this



<div class="form-group col-2">
<label for="A_maal">A: Mål</label>
<?=@$error['A_maal']?>
<input type="text" name="A_maal" id="A_maal" class="form-control" value="<?= @$_POST['A_maal'] ?>">
</div>


end of form



which is the thing that I want to be able to sort, this is my input on my site.
I used this for testing, the getAllTol() is just like the getAllType()



 <?php
foreach ($products->getAllTol() as $tol) {
echo'<div class="card m-3 bg-dark text-white">';
echo'<div class="card-header>';
echo'<h5 class="card-title">';
echo'</div>';
echo'<div class="card-body">';
echo'<pre class="text-white">';
print_r($tol);
echo'</pre>';
echo'</div>';
echo'</div>';
}


This line removed an undefined index error i had,



$A_maal = isset($_POST['A_maal']) ? $_POST['A_maal'] :$tol->tol_m_A_maal + $tol->tol_p_A_maal * 0.5;


and here is the "main" issue I think



if ($tol->tol_m_A_maal > ($A_maal) || $tol->tol_p_A_maal < ($A_maal)){ 
include './includes/modal.php';
}


oka so it like,



if the 'A_maal' input from the form is between the tol_m_A_maal and the tol_p_A_maal it's allowed without any warning, else it has to give an error showing the include in the if.



Could also explain it like this,



inside the type_tb I have a type named Daff with the tol_m_A_maal on 2 and tol_p_A_maal on 10 so everything between 2 and 10 is allowed.



but I also have a type called Man with a tol_m_A_maal on 6 and a tol_p_A_maal on 30, so when I pick the Man in the select then if I write a value between 6 and 30 it should be allowed.



I also want it to be so that when I create a new type then I don't have to update the code again.



I know it looks like a mess when you see it here, (doesn't look bad inside the editor)



if you feel like you miss some information then ill be happy to show you what you need.










share|improve this question
























  • Thanks for the edit :)
    – ShakyIpsen
    Nov 13 at 11:35
















0














I am trying to make a process control system and got into a problem that I yet haven't been able to solve, so thought I would ask for some help. I'll try to make it as simple as I can.



sry about the naming of the values it just to make it easier for me when I write it



Okay, I've got a pretty big form with a select in it that I want to be able to use, to be able to sort my tolerance.



<select class="form-control" name="type" id="exampleFormControlSelect4">
<?php foreach ($products->getAllType() as $type) { ?>
<option value="<?= @$type->type_id ?>" selected><?= @$type->type_name ?></option>
<?php } ?>
</select>


It's taking everything from a table called type_tb from my database using the getAllType() which looks like this



public function getAllType()
{
return $this->db->toList("SELECT * FROM type_tb");
}


inside the form, I also got this



<div class="form-group col-2">
<label for="A_maal">A: Mål</label>
<?=@$error['A_maal']?>
<input type="text" name="A_maal" id="A_maal" class="form-control" value="<?= @$_POST['A_maal'] ?>">
</div>


end of form



which is the thing that I want to be able to sort, this is my input on my site.
I used this for testing, the getAllTol() is just like the getAllType()



 <?php
foreach ($products->getAllTol() as $tol) {
echo'<div class="card m-3 bg-dark text-white">';
echo'<div class="card-header>';
echo'<h5 class="card-title">';
echo'</div>';
echo'<div class="card-body">';
echo'<pre class="text-white">';
print_r($tol);
echo'</pre>';
echo'</div>';
echo'</div>';
}


This line removed an undefined index error i had,



$A_maal = isset($_POST['A_maal']) ? $_POST['A_maal'] :$tol->tol_m_A_maal + $tol->tol_p_A_maal * 0.5;


and here is the "main" issue I think



if ($tol->tol_m_A_maal > ($A_maal) || $tol->tol_p_A_maal < ($A_maal)){ 
include './includes/modal.php';
}


oka so it like,



if the 'A_maal' input from the form is between the tol_m_A_maal and the tol_p_A_maal it's allowed without any warning, else it has to give an error showing the include in the if.



Could also explain it like this,



inside the type_tb I have a type named Daff with the tol_m_A_maal on 2 and tol_p_A_maal on 10 so everything between 2 and 10 is allowed.



but I also have a type called Man with a tol_m_A_maal on 6 and a tol_p_A_maal on 30, so when I pick the Man in the select then if I write a value between 6 and 30 it should be allowed.



I also want it to be so that when I create a new type then I don't have to update the code again.



I know it looks like a mess when you see it here, (doesn't look bad inside the editor)



if you feel like you miss some information then ill be happy to show you what you need.










share|improve this question
























  • Thanks for the edit :)
    – ShakyIpsen
    Nov 13 at 11:35














0












0








0







I am trying to make a process control system and got into a problem that I yet haven't been able to solve, so thought I would ask for some help. I'll try to make it as simple as I can.



sry about the naming of the values it just to make it easier for me when I write it



Okay, I've got a pretty big form with a select in it that I want to be able to use, to be able to sort my tolerance.



<select class="form-control" name="type" id="exampleFormControlSelect4">
<?php foreach ($products->getAllType() as $type) { ?>
<option value="<?= @$type->type_id ?>" selected><?= @$type->type_name ?></option>
<?php } ?>
</select>


It's taking everything from a table called type_tb from my database using the getAllType() which looks like this



public function getAllType()
{
return $this->db->toList("SELECT * FROM type_tb");
}


inside the form, I also got this



<div class="form-group col-2">
<label for="A_maal">A: Mål</label>
<?=@$error['A_maal']?>
<input type="text" name="A_maal" id="A_maal" class="form-control" value="<?= @$_POST['A_maal'] ?>">
</div>


end of form



which is the thing that I want to be able to sort, this is my input on my site.
I used this for testing, the getAllTol() is just like the getAllType()



 <?php
foreach ($products->getAllTol() as $tol) {
echo'<div class="card m-3 bg-dark text-white">';
echo'<div class="card-header>';
echo'<h5 class="card-title">';
echo'</div>';
echo'<div class="card-body">';
echo'<pre class="text-white">';
print_r($tol);
echo'</pre>';
echo'</div>';
echo'</div>';
}


This line removed an undefined index error i had,



$A_maal = isset($_POST['A_maal']) ? $_POST['A_maal'] :$tol->tol_m_A_maal + $tol->tol_p_A_maal * 0.5;


and here is the "main" issue I think



if ($tol->tol_m_A_maal > ($A_maal) || $tol->tol_p_A_maal < ($A_maal)){ 
include './includes/modal.php';
}


oka so it like,



if the 'A_maal' input from the form is between the tol_m_A_maal and the tol_p_A_maal it's allowed without any warning, else it has to give an error showing the include in the if.



Could also explain it like this,



inside the type_tb I have a type named Daff with the tol_m_A_maal on 2 and tol_p_A_maal on 10 so everything between 2 and 10 is allowed.



but I also have a type called Man with a tol_m_A_maal on 6 and a tol_p_A_maal on 30, so when I pick the Man in the select then if I write a value between 6 and 30 it should be allowed.



I also want it to be so that when I create a new type then I don't have to update the code again.



I know it looks like a mess when you see it here, (doesn't look bad inside the editor)



if you feel like you miss some information then ill be happy to show you what you need.










share|improve this question















I am trying to make a process control system and got into a problem that I yet haven't been able to solve, so thought I would ask for some help. I'll try to make it as simple as I can.



sry about the naming of the values it just to make it easier for me when I write it



Okay, I've got a pretty big form with a select in it that I want to be able to use, to be able to sort my tolerance.



<select class="form-control" name="type" id="exampleFormControlSelect4">
<?php foreach ($products->getAllType() as $type) { ?>
<option value="<?= @$type->type_id ?>" selected><?= @$type->type_name ?></option>
<?php } ?>
</select>


It's taking everything from a table called type_tb from my database using the getAllType() which looks like this



public function getAllType()
{
return $this->db->toList("SELECT * FROM type_tb");
}


inside the form, I also got this



<div class="form-group col-2">
<label for="A_maal">A: Mål</label>
<?=@$error['A_maal']?>
<input type="text" name="A_maal" id="A_maal" class="form-control" value="<?= @$_POST['A_maal'] ?>">
</div>


end of form



which is the thing that I want to be able to sort, this is my input on my site.
I used this for testing, the getAllTol() is just like the getAllType()



 <?php
foreach ($products->getAllTol() as $tol) {
echo'<div class="card m-3 bg-dark text-white">';
echo'<div class="card-header>';
echo'<h5 class="card-title">';
echo'</div>';
echo'<div class="card-body">';
echo'<pre class="text-white">';
print_r($tol);
echo'</pre>';
echo'</div>';
echo'</div>';
}


This line removed an undefined index error i had,



$A_maal = isset($_POST['A_maal']) ? $_POST['A_maal'] :$tol->tol_m_A_maal + $tol->tol_p_A_maal * 0.5;


and here is the "main" issue I think



if ($tol->tol_m_A_maal > ($A_maal) || $tol->tol_p_A_maal < ($A_maal)){ 
include './includes/modal.php';
}


oka so it like,



if the 'A_maal' input from the form is between the tol_m_A_maal and the tol_p_A_maal it's allowed without any warning, else it has to give an error showing the include in the if.



Could also explain it like this,



inside the type_tb I have a type named Daff with the tol_m_A_maal on 2 and tol_p_A_maal on 10 so everything between 2 and 10 is allowed.



but I also have a type called Man with a tol_m_A_maal on 6 and a tol_p_A_maal on 30, so when I pick the Man in the select then if I write a value between 6 and 30 it should be allowed.



I also want it to be so that when I create a new type then I don't have to update the code again.



I know it looks like a mess when you see it here, (doesn't look bad inside the editor)



if you feel like you miss some information then ill be happy to show you what you need.







php mysql pdo






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 13 at 11:39









Lithilion

7131919




7131919










asked Nov 13 at 11:31









ShakyIpsen

86




86












  • Thanks for the edit :)
    – ShakyIpsen
    Nov 13 at 11:35


















  • Thanks for the edit :)
    – ShakyIpsen
    Nov 13 at 11:35
















Thanks for the edit :)
– ShakyIpsen
Nov 13 at 11:35




Thanks for the edit :)
– ShakyIpsen
Nov 13 at 11:35

















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53280102%2fphp-tolerance-sorting-by-foreign-key%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53280102%2fphp-tolerance-sorting-by-foreign-key%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

鏡平學校

ꓛꓣだゔៀៅຸ໢ທຮ໕໒ ,ໂ'໥໓າ໼ឨឲ៵៭ៈゎゔit''䖳𥁄卿' ☨₤₨こゎもょの;ꜹꟚꞖꞵꟅꞛေၦေɯ,ɨɡ𛃵𛁹ޝ޳ޠ޾,ޤޒޯ޾𫝒𫠁သ𛅤チョ'サノބޘދ𛁐ᶿᶇᶀᶋᶠ㨑㽹⻮ꧬ꧹؍۩وَؠ㇕㇃㇪ ㇦㇋㇋ṜẰᵡᴠ 軌ᵕ搜۳ٰޗޮ޷ސޯ𫖾𫅀ल, ꙭ꙰ꚅꙁꚊꞻꝔ꟠Ꝭㄤﺟޱސꧨꧼ꧴ꧯꧽ꧲ꧯ'⽹⽭⾁⿞⼳⽋២៩ញណើꩯꩤ꩸ꩮᶻᶺᶧᶂ𫳲𫪭𬸄𫵰𬖩𬫣𬊉ၲ𛅬㕦䬺𫝌𫝼,,𫟖𫞽ហៅ஫㆔ాఆఅꙒꚞꙍ,Ꙟ꙱エ ,ポテ,フࢰࢯ𫟠𫞶 𫝤𫟠ﺕﹱﻜﻣ𪵕𪭸𪻆𪾩𫔷ġ,ŧآꞪ꟥,ꞔꝻ♚☹⛵𛀌ꬷꭞȄƁƪƬșƦǙǗdžƝǯǧⱦⱰꓕꓢႋ神 ဴ၀க௭எ௫ឫោ ' េㇷㇴㇼ神ㇸㇲㇽㇴㇼㇻㇸ'ㇸㇿㇸㇹㇰㆣꓚꓤ₡₧ ㄨㄟ㄂ㄖㄎ໗ツڒذ₶।ऩछएोञयूटक़कयँृी,冬'𛅢𛅥ㇱㇵㇶ𥄥𦒽𠣧𠊓𧢖𥞘𩔋цѰㄠſtʯʭɿʆʗʍʩɷɛ,əʏダヵㄐㄘR{gỚṖḺờṠṫảḙḭᴮᵏᴘᵀᵷᵕᴜᴏᵾq﮲ﲿﴽﭙ軌ﰬﶚﶧ﫲Ҝжюїкӈㇴffצּ﬘﭅﬈軌'ffistfflſtffतभफɳɰʊɲʎ𛁱𛁖𛁮𛀉 𛂯𛀞నఋŀŲ 𫟲𫠖𫞺ຆຆ ໹້໕໗ๆทԊꧢꧠ꧰ꓱ⿝⼑ŎḬẃẖỐẅ ,ờỰỈỗﮊDžȩꭏꭎꬻ꭮ꬿꭖꭥꭅ㇭神 ⾈ꓵꓑ⺄㄄ㄪㄙㄅㄇstA۵䞽ॶ𫞑𫝄㇉㇇゜軌𩜛𩳠Jﻺ‚Üမ႕ႌႊၐၸဓၞၞၡ៸wyvtᶎᶪᶹစဎ꣡꣰꣢꣤ٗ؋لㇳㇾㇻㇱ㆐㆔,,㆟Ⱶヤマފ޼ޝަݿݞݠݷݐ',ݘ,ݪݙݵ𬝉𬜁𫝨𫞘くせぉて¼óû×ó£…𛅑הㄙくԗԀ5606神45,神796'𪤻𫞧ꓐ㄁ㄘɥɺꓵꓲ3''7034׉ⱦⱠˆ“𫝋ȍ,ꩲ軌꩷ꩶꩧꩫఞ۔فڱێظペサ神ナᴦᵑ47 9238їﻂ䐊䔉㠸﬎ffiﬣ,לּᴷᴦᵛᵽ,ᴨᵤ ᵸᵥᴗᵈꚏꚉꚟ⻆rtǟƴ𬎎

Why https connections are so slow when debugging (stepping over) in Java?