Asking 2 values, feet and inches, and it converts them to centimeters
$begingroup$
I was doing an exercise in PHP, and it works perfectly, no problems. But I think that maybe I coded it so long, and I think it can be shorter than it is now, but I don't know how to make it shorter and that works exactly the same way.
I will explain what this code is doing for you so it's faster if you are going to help (if you want a deeper explanation, you can translate the commented section because that's the wording of the exercise): first of all, I have a PHP file and a html file with a form. The form it's asking for 2 values (feet and inches), for converting them to centimeters. Feet value must be integer, greater than or equal 0. Inches must be integer or decimal, and greater than or equal 0.
<?php
//Realice un formulario que introduzca dos valores (pies y pulgadas) y los convierta a
//centímetros. Los pies deben ser un número entero mayor o igual que cero. Las pulgadas
//son un número entero o decimal mayor o igual que cero. Un pie son doce pulgadas y una
//pulgada son 2,54 cm.
$converPC = 30.48;
$converPlC = 2.54;
$pies = trim(htmlspecialchars(strip_tags($_REQUEST["pies"]), ENT_QUOTES, "UTF-8"));
$pulgadas = trim(htmlspecialchars(strip_tags($_REQUEST["pulgadas"]), ENT_QUOTES, "UTF-8"));
if ( (!empty($pies)) && (!empty($pulgadas)) ) {
if ( (is_numeric($pies)) && (is_numeric($pulgadas)) ) {
//Apartado de los pies
if ( (filter_var($pies, FILTER_VALIDATE_INT)) && ($pies >= 0) ) {
$resultadoPI = $pies*$converPC;
print "<b>CONVERSIÓN PIES - CENTÍMETROS</b><br/>";
print "$pies pies son $resultadoPI centímetros<br/><br/>";
} else {
print "<b>Error en pies</b><br/>";
print "Debe introducir un número entero mayor o igual que cero<br/><br/>";
}
//Apartado de las pulgadas
if ($pulgadas >= 0) {
$resultadoPU = $pulgadas*$converPlC;
print "<b>CONVERSIÓN PULGADAS - CENTÍMETROS</b><br/>";
print "$pulgadas pulgadas son $resultadoPU centímetros";
} else {
print "<b>Error en pulgadas</b><br/>";
print "Debe introducir un número mayor o igual que cero";
}
} else {
print "Error, ambos valores deben ser numéricos";
}
} else {
print "Para que todo funcione, debe rellenar TODOS los campos del formulario";
}
?>
php unit-conversion
New contributor
$endgroup$
add a comment |
$begingroup$
I was doing an exercise in PHP, and it works perfectly, no problems. But I think that maybe I coded it so long, and I think it can be shorter than it is now, but I don't know how to make it shorter and that works exactly the same way.
I will explain what this code is doing for you so it's faster if you are going to help (if you want a deeper explanation, you can translate the commented section because that's the wording of the exercise): first of all, I have a PHP file and a html file with a form. The form it's asking for 2 values (feet and inches), for converting them to centimeters. Feet value must be integer, greater than or equal 0. Inches must be integer or decimal, and greater than or equal 0.
<?php
//Realice un formulario que introduzca dos valores (pies y pulgadas) y los convierta a
//centímetros. Los pies deben ser un número entero mayor o igual que cero. Las pulgadas
//son un número entero o decimal mayor o igual que cero. Un pie son doce pulgadas y una
//pulgada son 2,54 cm.
$converPC = 30.48;
$converPlC = 2.54;
$pies = trim(htmlspecialchars(strip_tags($_REQUEST["pies"]), ENT_QUOTES, "UTF-8"));
$pulgadas = trim(htmlspecialchars(strip_tags($_REQUEST["pulgadas"]), ENT_QUOTES, "UTF-8"));
if ( (!empty($pies)) && (!empty($pulgadas)) ) {
if ( (is_numeric($pies)) && (is_numeric($pulgadas)) ) {
//Apartado de los pies
if ( (filter_var($pies, FILTER_VALIDATE_INT)) && ($pies >= 0) ) {
$resultadoPI = $pies*$converPC;
print "<b>CONVERSIÓN PIES - CENTÍMETROS</b><br/>";
print "$pies pies son $resultadoPI centímetros<br/><br/>";
} else {
print "<b>Error en pies</b><br/>";
print "Debe introducir un número entero mayor o igual que cero<br/><br/>";
}
//Apartado de las pulgadas
if ($pulgadas >= 0) {
$resultadoPU = $pulgadas*$converPlC;
print "<b>CONVERSIÓN PULGADAS - CENTÍMETROS</b><br/>";
print "$pulgadas pulgadas son $resultadoPU centímetros";
} else {
print "<b>Error en pulgadas</b><br/>";
print "Debe introducir un número mayor o igual que cero";
}
} else {
print "Error, ambos valores deben ser numéricos";
}
} else {
print "Para que todo funcione, debe rellenar TODOS los campos del formulario";
}
?>
php unit-conversion
New contributor
$endgroup$
$begingroup$
I wanted to shorten this code or improve it. In stackoverflow they said to me that I should post this here, where should I post this code if I want that someone can help me to shorten and improve this code?
$endgroup$
– DaburuKao
16 hours ago
$begingroup$
@DaburuKao - Just to confirm: is this working code? If so, it is okay to post this here. Also, I am not sure how much this code can be reduced in size. Do you still want a review if the results don't offer much of a reduction in size?
$endgroup$
– John Conde
16 hours ago
$begingroup$
As I said before yes, this code worked for me as intended. And I would accept a review about my code, possible reduces in size or improvements...anything ^^
$endgroup$
– DaburuKao
16 hours ago
add a comment |
$begingroup$
I was doing an exercise in PHP, and it works perfectly, no problems. But I think that maybe I coded it so long, and I think it can be shorter than it is now, but I don't know how to make it shorter and that works exactly the same way.
I will explain what this code is doing for you so it's faster if you are going to help (if you want a deeper explanation, you can translate the commented section because that's the wording of the exercise): first of all, I have a PHP file and a html file with a form. The form it's asking for 2 values (feet and inches), for converting them to centimeters. Feet value must be integer, greater than or equal 0. Inches must be integer or decimal, and greater than or equal 0.
<?php
//Realice un formulario que introduzca dos valores (pies y pulgadas) y los convierta a
//centímetros. Los pies deben ser un número entero mayor o igual que cero. Las pulgadas
//son un número entero o decimal mayor o igual que cero. Un pie son doce pulgadas y una
//pulgada son 2,54 cm.
$converPC = 30.48;
$converPlC = 2.54;
$pies = trim(htmlspecialchars(strip_tags($_REQUEST["pies"]), ENT_QUOTES, "UTF-8"));
$pulgadas = trim(htmlspecialchars(strip_tags($_REQUEST["pulgadas"]), ENT_QUOTES, "UTF-8"));
if ( (!empty($pies)) && (!empty($pulgadas)) ) {
if ( (is_numeric($pies)) && (is_numeric($pulgadas)) ) {
//Apartado de los pies
if ( (filter_var($pies, FILTER_VALIDATE_INT)) && ($pies >= 0) ) {
$resultadoPI = $pies*$converPC;
print "<b>CONVERSIÓN PIES - CENTÍMETROS</b><br/>";
print "$pies pies son $resultadoPI centímetros<br/><br/>";
} else {
print "<b>Error en pies</b><br/>";
print "Debe introducir un número entero mayor o igual que cero<br/><br/>";
}
//Apartado de las pulgadas
if ($pulgadas >= 0) {
$resultadoPU = $pulgadas*$converPlC;
print "<b>CONVERSIÓN PULGADAS - CENTÍMETROS</b><br/>";
print "$pulgadas pulgadas son $resultadoPU centímetros";
} else {
print "<b>Error en pulgadas</b><br/>";
print "Debe introducir un número mayor o igual que cero";
}
} else {
print "Error, ambos valores deben ser numéricos";
}
} else {
print "Para que todo funcione, debe rellenar TODOS los campos del formulario";
}
?>
php unit-conversion
New contributor
$endgroup$
I was doing an exercise in PHP, and it works perfectly, no problems. But I think that maybe I coded it so long, and I think it can be shorter than it is now, but I don't know how to make it shorter and that works exactly the same way.
I will explain what this code is doing for you so it's faster if you are going to help (if you want a deeper explanation, you can translate the commented section because that's the wording of the exercise): first of all, I have a PHP file and a html file with a form. The form it's asking for 2 values (feet and inches), for converting them to centimeters. Feet value must be integer, greater than or equal 0. Inches must be integer or decimal, and greater than or equal 0.
<?php
//Realice un formulario que introduzca dos valores (pies y pulgadas) y los convierta a
//centímetros. Los pies deben ser un número entero mayor o igual que cero. Las pulgadas
//son un número entero o decimal mayor o igual que cero. Un pie son doce pulgadas y una
//pulgada son 2,54 cm.
$converPC = 30.48;
$converPlC = 2.54;
$pies = trim(htmlspecialchars(strip_tags($_REQUEST["pies"]), ENT_QUOTES, "UTF-8"));
$pulgadas = trim(htmlspecialchars(strip_tags($_REQUEST["pulgadas"]), ENT_QUOTES, "UTF-8"));
if ( (!empty($pies)) && (!empty($pulgadas)) ) {
if ( (is_numeric($pies)) && (is_numeric($pulgadas)) ) {
//Apartado de los pies
if ( (filter_var($pies, FILTER_VALIDATE_INT)) && ($pies >= 0) ) {
$resultadoPI = $pies*$converPC;
print "<b>CONVERSIÓN PIES - CENTÍMETROS</b><br/>";
print "$pies pies son $resultadoPI centímetros<br/><br/>";
} else {
print "<b>Error en pies</b><br/>";
print "Debe introducir un número entero mayor o igual que cero<br/><br/>";
}
//Apartado de las pulgadas
if ($pulgadas >= 0) {
$resultadoPU = $pulgadas*$converPlC;
print "<b>CONVERSIÓN PULGADAS - CENTÍMETROS</b><br/>";
print "$pulgadas pulgadas son $resultadoPU centímetros";
} else {
print "<b>Error en pulgadas</b><br/>";
print "Debe introducir un número mayor o igual que cero";
}
} else {
print "Error, ambos valores deben ser numéricos";
}
} else {
print "Para que todo funcione, debe rellenar TODOS los campos del formulario";
}
?>
php unit-conversion
php unit-conversion
New contributor
New contributor
edited 1 hour ago
Jamal♦
30.3k11119227
30.3k11119227
New contributor
asked 19 hours ago
DaburuKaoDaburuKao
91
91
New contributor
New contributor
$begingroup$
I wanted to shorten this code or improve it. In stackoverflow they said to me that I should post this here, where should I post this code if I want that someone can help me to shorten and improve this code?
$endgroup$
– DaburuKao
16 hours ago
$begingroup$
@DaburuKao - Just to confirm: is this working code? If so, it is okay to post this here. Also, I am not sure how much this code can be reduced in size. Do you still want a review if the results don't offer much of a reduction in size?
$endgroup$
– John Conde
16 hours ago
$begingroup$
As I said before yes, this code worked for me as intended. And I would accept a review about my code, possible reduces in size or improvements...anything ^^
$endgroup$
– DaburuKao
16 hours ago
add a comment |
$begingroup$
I wanted to shorten this code or improve it. In stackoverflow they said to me that I should post this here, where should I post this code if I want that someone can help me to shorten and improve this code?
$endgroup$
– DaburuKao
16 hours ago
$begingroup$
@DaburuKao - Just to confirm: is this working code? If so, it is okay to post this here. Also, I am not sure how much this code can be reduced in size. Do you still want a review if the results don't offer much of a reduction in size?
$endgroup$
– John Conde
16 hours ago
$begingroup$
As I said before yes, this code worked for me as intended. And I would accept a review about my code, possible reduces in size or improvements...anything ^^
$endgroup$
– DaburuKao
16 hours ago
$begingroup$
I wanted to shorten this code or improve it. In stackoverflow they said to me that I should post this here, where should I post this code if I want that someone can help me to shorten and improve this code?
$endgroup$
– DaburuKao
16 hours ago
$begingroup$
I wanted to shorten this code or improve it. In stackoverflow they said to me that I should post this here, where should I post this code if I want that someone can help me to shorten and improve this code?
$endgroup$
– DaburuKao
16 hours ago
$begingroup$
@DaburuKao - Just to confirm: is this working code? If so, it is okay to post this here. Also, I am not sure how much this code can be reduced in size. Do you still want a review if the results don't offer much of a reduction in size?
$endgroup$
– John Conde
16 hours ago
$begingroup$
@DaburuKao - Just to confirm: is this working code? If so, it is okay to post this here. Also, I am not sure how much this code can be reduced in size. Do you still want a review if the results don't offer much of a reduction in size?
$endgroup$
– John Conde
16 hours ago
$begingroup$
As I said before yes, this code worked for me as intended. And I would accept a review about my code, possible reduces in size or improvements...anything ^^
$endgroup$
– DaburuKao
16 hours ago
$begingroup$
As I said before yes, this code worked for me as intended. And I would accept a review about my code, possible reduces in size or improvements...anything ^^
$endgroup$
– DaburuKao
16 hours ago
add a comment |
2 Answers
2
active
oldest
votes
$begingroup$
This code is pretty compact already so there isn't much room to reduce the size of it. Typically separating the error handling, calculations, and output of content are separated so you may want to look into that for code improvements but that won't make the code any smaller.
Better data sanitation
It's great that you do your best to sanitize user input before you use it. But, there's better ways to go about it. Since
both inputs are expected to be floating point numbers you can use PHP's built in filter_var()
with the
FILTER_VALIDATE_FLOAT
flag to sanitize the value to a floating point number:
$pies = filter_var($_REQUEST["pies"], FILTER_VALIDATE_FLOAT, FILTER_FLAG_ALLOW_THOUSAND);
$pulgadas = filter_var($_REQUEST["pulgadas"], FILTER_VALIDATE_FLOAT, FILTER_FLAG_ALLOW_THOUSAND);
Combine/remove your IF statements
When you see an IF statement followed by another IF statement that's usually a sign that you could combine the two into one as all of them must be true for the following code to be executed:
if ( !empty($pies) && !empty($pulgadas) && (s_numeric($pies) && is_numeric($pulgadas) ) {
The above line can then be shortened thanks to the better sanitation used above. The checks to is_numeric are no longer
needed since filter_var()
will return a number or false which will be caught by the empty()
checks. So you can now safely remove them:
if ( !empty($pies) && !empty($pulgadas) ) {
You can eliminate your check to see if $pies >= 0
by passing an extra flag to filter_var()
to only allow positive numbers and zero.
if ( filter_var($pies, FILTER_VALIDATE_INT) && $pies >= 0 ) {
becomes
if ( filter_var($pies, FILTER_VALIDATE_INT, ['options' => ['min_range' => 0]]) ) {
You also forgot to add this check for $pulgadas
.
Other notes
Use constants to store values that will remain the same and are unchangeable
Your variables containing the ratios for converting the measurements are better off set as constants than variables since they will remain the same and are unchangeable. (i.e. constant)
$converPC = 30.48;
$converPlC = 2.54;
becomes (notice the use of all capital letters as that is the expected format of constants in PHP)
define('CONVER_PC', 30.48);
define('CONVER_PLC', 2.54);
Omit closing PHP tag
When the closing tag is the last line of a PHP file you can safely omit and it is the standard practice as set forth by
the PSR-2 coding standard for PHP. There are lots of good reasons to do this.
Use echo
over print()
print()
is an alias of echo
but there are minor differences between the two. Although they don't come into play here, it is the PHP convention to use echo
for outputting content.
Unnecessary parenthesis
If your IF statements you have parenthesis around each conditional. That is not necessary. You only need to use them when you need to clarify scope. When there's only one condition there is nothing that needs clarification.
Outcome
This code is untested but should give you the idea of what the comments above mean.
define('CONVER_PC', 30.48);
define('CONVER_PLC', 2.54);
$pies = filter_var($_REQUEST["pies"], FILTER_VALIDATE_FLOAT, FILTER_FLAG_ALLOW_THOUSAND);
$pulgadas = filter_var($_REQUEST["pulgadas"], FILTER_VALIDATE_FLOAT, FILTER_FLAG_ALLOW_THOUSAND);
if ( !empty($pies) && !empty($pulgadas) ) {
//Apartado de los pies
if ( filter_var($pies, FILTER_VALIDATE_INT, ['options' => ['min_range' => 0]]) ) {
$resultadoPI = $pies*CONVER_PC;
echo "<b>CONVERSIÓN PIES - CENTÍMETROS</b><br/>";
echo "$pies pies son $resultadoPI centímetros<br/><br/>";
} else {
echo "<b>Error en pies</b><br/>";
echo "Debe introducir un número entero mayor o igual que cero<br/><br/>";
}
//Apartado de las pulgadas
if ( filter_var($pulgadas, FILTER_VALIDATE_INT, ['options' => ['min_range' => 0]]) ) {
$resultadoPU = $pulgadas*CONVER_PLC;
echo "<b>CONVERSIÓN PULGADAS - CENTÍMETROS</b><br/>";
echo "$pulgadas pulgadas son $resultadoPU centímetros";
} else {
echo "<b>Error en pulgadas</b><br/>";
echo "Debe introducir un número mayor o igual que cero";
}
} else {
print "Para que todo funcione, debe rellenar TODOS los campos del formulario";
}
$endgroup$
add a comment |
$begingroup$
Main issues with this code are
- It doesn't meet the requirements (so doesn't the code in the other answer).
- Its result is not very useful if you ever try to actually use it.
- Nearly half of this code just duplicates itself or plain useless.
So here goes your homework
$converPlC = 2.54;
$converPC = $converPlC * 12;
$pies = $_REQUEST["pies"];
$pulgadas = $_REQUEST["pulgadas"];
if (ctype_digit($pies) && $pies >= 0) {
$resultadoPI = $pies*$converPC;
print "<b>CONVERSIÓN PIES - CENTÍMETROS</b><br/>n";
print "$pies pies son $resultadoPI centímetros<br/><br/>n";
} else {
print "<b>Error en pies</b><br/>n";
print "Debe introducir un número entero mayor o igual que cero<br/><br/>n";
$resultadoPI = 0;
}
if (is_numeric($pulgadas) && $pulgadas >= 0) {
$resultadoPU = $pulgadas*$converPlC;
print "<b>CONVERSIÓN PULGADAS - CENTÍMETROS</b><br/>n";
print "$pulgadas pulgadas son $resultadoPU centímetrosn";
} else {
print "<b>Error en pulgadas</b><br/>n";
print "Debe introducir un número mayor o igual que ceron";
$resultadoPU = 0;
}
It makes your code fixed but it doesn't look good. To make it better, we will need a sensible output and also we definitely should separate the calculations from the output. So here goes the refactored version
$converPlC = 2.54;
$converPC = $converPlC * 12;
$pies = $_REQUEST["pies"];
$pulgadas = $_REQUEST["pulgadas"];
if (!(ctype_digit($pies) && $pies >= 0) || !(is_numeric($pulgadas) && $pulgadas >= 0)) {
$title = "Invalid input data";
$message = "Input must be a positive number or zero";
} else {
$resultadoPI = $pies*$converPC;
$resultadoPU = $pulgadas*$converPlC;
$resultado = $resultadoPU + $resultadoPI;
if ($resultadoPU && $resultadoPI) {
$title = "CONVERSIÓN PIES Y PULGADAS - CENTÍMETROS";
$message = "$pies pies y $pulgadas pulgadas son $resultado centímetros";
} elseif ($resultadoPI) {
$title = "CONVERSIÓN PIES - CENTÍMETROS";
$message = "$pies pies son $resultado centímetros";
} elseif ($resultadoPU) {
$title = "CONVERSIÓN PULGADAS - CENTÍMETROS";
$message = "$pulgadas pulgadas son $resultado centímetros";
} else {
$title = "Invalid input data";
$message = "Enter at least one value";
}
}
?>
<b><?=$title?></b><br/>
<?=$message?><br/><br/>
$endgroup$
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["\$", "\$"]]);
});
});
}, "mathjax-editing");
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: "196"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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
});
}
});
DaburuKao is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f213791%2fasking-2-values-feet-and-inches-and-it-converts-them-to-centimeters%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
This code is pretty compact already so there isn't much room to reduce the size of it. Typically separating the error handling, calculations, and output of content are separated so you may want to look into that for code improvements but that won't make the code any smaller.
Better data sanitation
It's great that you do your best to sanitize user input before you use it. But, there's better ways to go about it. Since
both inputs are expected to be floating point numbers you can use PHP's built in filter_var()
with the
FILTER_VALIDATE_FLOAT
flag to sanitize the value to a floating point number:
$pies = filter_var($_REQUEST["pies"], FILTER_VALIDATE_FLOAT, FILTER_FLAG_ALLOW_THOUSAND);
$pulgadas = filter_var($_REQUEST["pulgadas"], FILTER_VALIDATE_FLOAT, FILTER_FLAG_ALLOW_THOUSAND);
Combine/remove your IF statements
When you see an IF statement followed by another IF statement that's usually a sign that you could combine the two into one as all of them must be true for the following code to be executed:
if ( !empty($pies) && !empty($pulgadas) && (s_numeric($pies) && is_numeric($pulgadas) ) {
The above line can then be shortened thanks to the better sanitation used above. The checks to is_numeric are no longer
needed since filter_var()
will return a number or false which will be caught by the empty()
checks. So you can now safely remove them:
if ( !empty($pies) && !empty($pulgadas) ) {
You can eliminate your check to see if $pies >= 0
by passing an extra flag to filter_var()
to only allow positive numbers and zero.
if ( filter_var($pies, FILTER_VALIDATE_INT) && $pies >= 0 ) {
becomes
if ( filter_var($pies, FILTER_VALIDATE_INT, ['options' => ['min_range' => 0]]) ) {
You also forgot to add this check for $pulgadas
.
Other notes
Use constants to store values that will remain the same and are unchangeable
Your variables containing the ratios for converting the measurements are better off set as constants than variables since they will remain the same and are unchangeable. (i.e. constant)
$converPC = 30.48;
$converPlC = 2.54;
becomes (notice the use of all capital letters as that is the expected format of constants in PHP)
define('CONVER_PC', 30.48);
define('CONVER_PLC', 2.54);
Omit closing PHP tag
When the closing tag is the last line of a PHP file you can safely omit and it is the standard practice as set forth by
the PSR-2 coding standard for PHP. There are lots of good reasons to do this.
Use echo
over print()
print()
is an alias of echo
but there are minor differences between the two. Although they don't come into play here, it is the PHP convention to use echo
for outputting content.
Unnecessary parenthesis
If your IF statements you have parenthesis around each conditional. That is not necessary. You only need to use them when you need to clarify scope. When there's only one condition there is nothing that needs clarification.
Outcome
This code is untested but should give you the idea of what the comments above mean.
define('CONVER_PC', 30.48);
define('CONVER_PLC', 2.54);
$pies = filter_var($_REQUEST["pies"], FILTER_VALIDATE_FLOAT, FILTER_FLAG_ALLOW_THOUSAND);
$pulgadas = filter_var($_REQUEST["pulgadas"], FILTER_VALIDATE_FLOAT, FILTER_FLAG_ALLOW_THOUSAND);
if ( !empty($pies) && !empty($pulgadas) ) {
//Apartado de los pies
if ( filter_var($pies, FILTER_VALIDATE_INT, ['options' => ['min_range' => 0]]) ) {
$resultadoPI = $pies*CONVER_PC;
echo "<b>CONVERSIÓN PIES - CENTÍMETROS</b><br/>";
echo "$pies pies son $resultadoPI centímetros<br/><br/>";
} else {
echo "<b>Error en pies</b><br/>";
echo "Debe introducir un número entero mayor o igual que cero<br/><br/>";
}
//Apartado de las pulgadas
if ( filter_var($pulgadas, FILTER_VALIDATE_INT, ['options' => ['min_range' => 0]]) ) {
$resultadoPU = $pulgadas*CONVER_PLC;
echo "<b>CONVERSIÓN PULGADAS - CENTÍMETROS</b><br/>";
echo "$pulgadas pulgadas son $resultadoPU centímetros";
} else {
echo "<b>Error en pulgadas</b><br/>";
echo "Debe introducir un número mayor o igual que cero";
}
} else {
print "Para que todo funcione, debe rellenar TODOS los campos del formulario";
}
$endgroup$
add a comment |
$begingroup$
This code is pretty compact already so there isn't much room to reduce the size of it. Typically separating the error handling, calculations, and output of content are separated so you may want to look into that for code improvements but that won't make the code any smaller.
Better data sanitation
It's great that you do your best to sanitize user input before you use it. But, there's better ways to go about it. Since
both inputs are expected to be floating point numbers you can use PHP's built in filter_var()
with the
FILTER_VALIDATE_FLOAT
flag to sanitize the value to a floating point number:
$pies = filter_var($_REQUEST["pies"], FILTER_VALIDATE_FLOAT, FILTER_FLAG_ALLOW_THOUSAND);
$pulgadas = filter_var($_REQUEST["pulgadas"], FILTER_VALIDATE_FLOAT, FILTER_FLAG_ALLOW_THOUSAND);
Combine/remove your IF statements
When you see an IF statement followed by another IF statement that's usually a sign that you could combine the two into one as all of them must be true for the following code to be executed:
if ( !empty($pies) && !empty($pulgadas) && (s_numeric($pies) && is_numeric($pulgadas) ) {
The above line can then be shortened thanks to the better sanitation used above. The checks to is_numeric are no longer
needed since filter_var()
will return a number or false which will be caught by the empty()
checks. So you can now safely remove them:
if ( !empty($pies) && !empty($pulgadas) ) {
You can eliminate your check to see if $pies >= 0
by passing an extra flag to filter_var()
to only allow positive numbers and zero.
if ( filter_var($pies, FILTER_VALIDATE_INT) && $pies >= 0 ) {
becomes
if ( filter_var($pies, FILTER_VALIDATE_INT, ['options' => ['min_range' => 0]]) ) {
You also forgot to add this check for $pulgadas
.
Other notes
Use constants to store values that will remain the same and are unchangeable
Your variables containing the ratios for converting the measurements are better off set as constants than variables since they will remain the same and are unchangeable. (i.e. constant)
$converPC = 30.48;
$converPlC = 2.54;
becomes (notice the use of all capital letters as that is the expected format of constants in PHP)
define('CONVER_PC', 30.48);
define('CONVER_PLC', 2.54);
Omit closing PHP tag
When the closing tag is the last line of a PHP file you can safely omit and it is the standard practice as set forth by
the PSR-2 coding standard for PHP. There are lots of good reasons to do this.
Use echo
over print()
print()
is an alias of echo
but there are minor differences between the two. Although they don't come into play here, it is the PHP convention to use echo
for outputting content.
Unnecessary parenthesis
If your IF statements you have parenthesis around each conditional. That is not necessary. You only need to use them when you need to clarify scope. When there's only one condition there is nothing that needs clarification.
Outcome
This code is untested but should give you the idea of what the comments above mean.
define('CONVER_PC', 30.48);
define('CONVER_PLC', 2.54);
$pies = filter_var($_REQUEST["pies"], FILTER_VALIDATE_FLOAT, FILTER_FLAG_ALLOW_THOUSAND);
$pulgadas = filter_var($_REQUEST["pulgadas"], FILTER_VALIDATE_FLOAT, FILTER_FLAG_ALLOW_THOUSAND);
if ( !empty($pies) && !empty($pulgadas) ) {
//Apartado de los pies
if ( filter_var($pies, FILTER_VALIDATE_INT, ['options' => ['min_range' => 0]]) ) {
$resultadoPI = $pies*CONVER_PC;
echo "<b>CONVERSIÓN PIES - CENTÍMETROS</b><br/>";
echo "$pies pies son $resultadoPI centímetros<br/><br/>";
} else {
echo "<b>Error en pies</b><br/>";
echo "Debe introducir un número entero mayor o igual que cero<br/><br/>";
}
//Apartado de las pulgadas
if ( filter_var($pulgadas, FILTER_VALIDATE_INT, ['options' => ['min_range' => 0]]) ) {
$resultadoPU = $pulgadas*CONVER_PLC;
echo "<b>CONVERSIÓN PULGADAS - CENTÍMETROS</b><br/>";
echo "$pulgadas pulgadas son $resultadoPU centímetros";
} else {
echo "<b>Error en pulgadas</b><br/>";
echo "Debe introducir un número mayor o igual que cero";
}
} else {
print "Para que todo funcione, debe rellenar TODOS los campos del formulario";
}
$endgroup$
add a comment |
$begingroup$
This code is pretty compact already so there isn't much room to reduce the size of it. Typically separating the error handling, calculations, and output of content are separated so you may want to look into that for code improvements but that won't make the code any smaller.
Better data sanitation
It's great that you do your best to sanitize user input before you use it. But, there's better ways to go about it. Since
both inputs are expected to be floating point numbers you can use PHP's built in filter_var()
with the
FILTER_VALIDATE_FLOAT
flag to sanitize the value to a floating point number:
$pies = filter_var($_REQUEST["pies"], FILTER_VALIDATE_FLOAT, FILTER_FLAG_ALLOW_THOUSAND);
$pulgadas = filter_var($_REQUEST["pulgadas"], FILTER_VALIDATE_FLOAT, FILTER_FLAG_ALLOW_THOUSAND);
Combine/remove your IF statements
When you see an IF statement followed by another IF statement that's usually a sign that you could combine the two into one as all of them must be true for the following code to be executed:
if ( !empty($pies) && !empty($pulgadas) && (s_numeric($pies) && is_numeric($pulgadas) ) {
The above line can then be shortened thanks to the better sanitation used above. The checks to is_numeric are no longer
needed since filter_var()
will return a number or false which will be caught by the empty()
checks. So you can now safely remove them:
if ( !empty($pies) && !empty($pulgadas) ) {
You can eliminate your check to see if $pies >= 0
by passing an extra flag to filter_var()
to only allow positive numbers and zero.
if ( filter_var($pies, FILTER_VALIDATE_INT) && $pies >= 0 ) {
becomes
if ( filter_var($pies, FILTER_VALIDATE_INT, ['options' => ['min_range' => 0]]) ) {
You also forgot to add this check for $pulgadas
.
Other notes
Use constants to store values that will remain the same and are unchangeable
Your variables containing the ratios for converting the measurements are better off set as constants than variables since they will remain the same and are unchangeable. (i.e. constant)
$converPC = 30.48;
$converPlC = 2.54;
becomes (notice the use of all capital letters as that is the expected format of constants in PHP)
define('CONVER_PC', 30.48);
define('CONVER_PLC', 2.54);
Omit closing PHP tag
When the closing tag is the last line of a PHP file you can safely omit and it is the standard practice as set forth by
the PSR-2 coding standard for PHP. There are lots of good reasons to do this.
Use echo
over print()
print()
is an alias of echo
but there are minor differences between the two. Although they don't come into play here, it is the PHP convention to use echo
for outputting content.
Unnecessary parenthesis
If your IF statements you have parenthesis around each conditional. That is not necessary. You only need to use them when you need to clarify scope. When there's only one condition there is nothing that needs clarification.
Outcome
This code is untested but should give you the idea of what the comments above mean.
define('CONVER_PC', 30.48);
define('CONVER_PLC', 2.54);
$pies = filter_var($_REQUEST["pies"], FILTER_VALIDATE_FLOAT, FILTER_FLAG_ALLOW_THOUSAND);
$pulgadas = filter_var($_REQUEST["pulgadas"], FILTER_VALIDATE_FLOAT, FILTER_FLAG_ALLOW_THOUSAND);
if ( !empty($pies) && !empty($pulgadas) ) {
//Apartado de los pies
if ( filter_var($pies, FILTER_VALIDATE_INT, ['options' => ['min_range' => 0]]) ) {
$resultadoPI = $pies*CONVER_PC;
echo "<b>CONVERSIÓN PIES - CENTÍMETROS</b><br/>";
echo "$pies pies son $resultadoPI centímetros<br/><br/>";
} else {
echo "<b>Error en pies</b><br/>";
echo "Debe introducir un número entero mayor o igual que cero<br/><br/>";
}
//Apartado de las pulgadas
if ( filter_var($pulgadas, FILTER_VALIDATE_INT, ['options' => ['min_range' => 0]]) ) {
$resultadoPU = $pulgadas*CONVER_PLC;
echo "<b>CONVERSIÓN PULGADAS - CENTÍMETROS</b><br/>";
echo "$pulgadas pulgadas son $resultadoPU centímetros";
} else {
echo "<b>Error en pulgadas</b><br/>";
echo "Debe introducir un número mayor o igual que cero";
}
} else {
print "Para que todo funcione, debe rellenar TODOS los campos del formulario";
}
$endgroup$
This code is pretty compact already so there isn't much room to reduce the size of it. Typically separating the error handling, calculations, and output of content are separated so you may want to look into that for code improvements but that won't make the code any smaller.
Better data sanitation
It's great that you do your best to sanitize user input before you use it. But, there's better ways to go about it. Since
both inputs are expected to be floating point numbers you can use PHP's built in filter_var()
with the
FILTER_VALIDATE_FLOAT
flag to sanitize the value to a floating point number:
$pies = filter_var($_REQUEST["pies"], FILTER_VALIDATE_FLOAT, FILTER_FLAG_ALLOW_THOUSAND);
$pulgadas = filter_var($_REQUEST["pulgadas"], FILTER_VALIDATE_FLOAT, FILTER_FLAG_ALLOW_THOUSAND);
Combine/remove your IF statements
When you see an IF statement followed by another IF statement that's usually a sign that you could combine the two into one as all of them must be true for the following code to be executed:
if ( !empty($pies) && !empty($pulgadas) && (s_numeric($pies) && is_numeric($pulgadas) ) {
The above line can then be shortened thanks to the better sanitation used above. The checks to is_numeric are no longer
needed since filter_var()
will return a number or false which will be caught by the empty()
checks. So you can now safely remove them:
if ( !empty($pies) && !empty($pulgadas) ) {
You can eliminate your check to see if $pies >= 0
by passing an extra flag to filter_var()
to only allow positive numbers and zero.
if ( filter_var($pies, FILTER_VALIDATE_INT) && $pies >= 0 ) {
becomes
if ( filter_var($pies, FILTER_VALIDATE_INT, ['options' => ['min_range' => 0]]) ) {
You also forgot to add this check for $pulgadas
.
Other notes
Use constants to store values that will remain the same and are unchangeable
Your variables containing the ratios for converting the measurements are better off set as constants than variables since they will remain the same and are unchangeable. (i.e. constant)
$converPC = 30.48;
$converPlC = 2.54;
becomes (notice the use of all capital letters as that is the expected format of constants in PHP)
define('CONVER_PC', 30.48);
define('CONVER_PLC', 2.54);
Omit closing PHP tag
When the closing tag is the last line of a PHP file you can safely omit and it is the standard practice as set forth by
the PSR-2 coding standard for PHP. There are lots of good reasons to do this.
Use echo
over print()
print()
is an alias of echo
but there are minor differences between the two. Although they don't come into play here, it is the PHP convention to use echo
for outputting content.
Unnecessary parenthesis
If your IF statements you have parenthesis around each conditional. That is not necessary. You only need to use them when you need to clarify scope. When there's only one condition there is nothing that needs clarification.
Outcome
This code is untested but should give you the idea of what the comments above mean.
define('CONVER_PC', 30.48);
define('CONVER_PLC', 2.54);
$pies = filter_var($_REQUEST["pies"], FILTER_VALIDATE_FLOAT, FILTER_FLAG_ALLOW_THOUSAND);
$pulgadas = filter_var($_REQUEST["pulgadas"], FILTER_VALIDATE_FLOAT, FILTER_FLAG_ALLOW_THOUSAND);
if ( !empty($pies) && !empty($pulgadas) ) {
//Apartado de los pies
if ( filter_var($pies, FILTER_VALIDATE_INT, ['options' => ['min_range' => 0]]) ) {
$resultadoPI = $pies*CONVER_PC;
echo "<b>CONVERSIÓN PIES - CENTÍMETROS</b><br/>";
echo "$pies pies son $resultadoPI centímetros<br/><br/>";
} else {
echo "<b>Error en pies</b><br/>";
echo "Debe introducir un número entero mayor o igual que cero<br/><br/>";
}
//Apartado de las pulgadas
if ( filter_var($pulgadas, FILTER_VALIDATE_INT, ['options' => ['min_range' => 0]]) ) {
$resultadoPU = $pulgadas*CONVER_PLC;
echo "<b>CONVERSIÓN PULGADAS - CENTÍMETROS</b><br/>";
echo "$pulgadas pulgadas son $resultadoPU centímetros";
} else {
echo "<b>Error en pulgadas</b><br/>";
echo "Debe introducir un número mayor o igual que cero";
}
} else {
print "Para que todo funcione, debe rellenar TODOS los campos del formulario";
}
answered 16 hours ago
John CondeJohn Conde
33829
33829
add a comment |
add a comment |
$begingroup$
Main issues with this code are
- It doesn't meet the requirements (so doesn't the code in the other answer).
- Its result is not very useful if you ever try to actually use it.
- Nearly half of this code just duplicates itself or plain useless.
So here goes your homework
$converPlC = 2.54;
$converPC = $converPlC * 12;
$pies = $_REQUEST["pies"];
$pulgadas = $_REQUEST["pulgadas"];
if (ctype_digit($pies) && $pies >= 0) {
$resultadoPI = $pies*$converPC;
print "<b>CONVERSIÓN PIES - CENTÍMETROS</b><br/>n";
print "$pies pies son $resultadoPI centímetros<br/><br/>n";
} else {
print "<b>Error en pies</b><br/>n";
print "Debe introducir un número entero mayor o igual que cero<br/><br/>n";
$resultadoPI = 0;
}
if (is_numeric($pulgadas) && $pulgadas >= 0) {
$resultadoPU = $pulgadas*$converPlC;
print "<b>CONVERSIÓN PULGADAS - CENTÍMETROS</b><br/>n";
print "$pulgadas pulgadas son $resultadoPU centímetrosn";
} else {
print "<b>Error en pulgadas</b><br/>n";
print "Debe introducir un número mayor o igual que ceron";
$resultadoPU = 0;
}
It makes your code fixed but it doesn't look good. To make it better, we will need a sensible output and also we definitely should separate the calculations from the output. So here goes the refactored version
$converPlC = 2.54;
$converPC = $converPlC * 12;
$pies = $_REQUEST["pies"];
$pulgadas = $_REQUEST["pulgadas"];
if (!(ctype_digit($pies) && $pies >= 0) || !(is_numeric($pulgadas) && $pulgadas >= 0)) {
$title = "Invalid input data";
$message = "Input must be a positive number or zero";
} else {
$resultadoPI = $pies*$converPC;
$resultadoPU = $pulgadas*$converPlC;
$resultado = $resultadoPU + $resultadoPI;
if ($resultadoPU && $resultadoPI) {
$title = "CONVERSIÓN PIES Y PULGADAS - CENTÍMETROS";
$message = "$pies pies y $pulgadas pulgadas son $resultado centímetros";
} elseif ($resultadoPI) {
$title = "CONVERSIÓN PIES - CENTÍMETROS";
$message = "$pies pies son $resultado centímetros";
} elseif ($resultadoPU) {
$title = "CONVERSIÓN PULGADAS - CENTÍMETROS";
$message = "$pulgadas pulgadas son $resultado centímetros";
} else {
$title = "Invalid input data";
$message = "Enter at least one value";
}
}
?>
<b><?=$title?></b><br/>
<?=$message?><br/><br/>
$endgroup$
add a comment |
$begingroup$
Main issues with this code are
- It doesn't meet the requirements (so doesn't the code in the other answer).
- Its result is not very useful if you ever try to actually use it.
- Nearly half of this code just duplicates itself or plain useless.
So here goes your homework
$converPlC = 2.54;
$converPC = $converPlC * 12;
$pies = $_REQUEST["pies"];
$pulgadas = $_REQUEST["pulgadas"];
if (ctype_digit($pies) && $pies >= 0) {
$resultadoPI = $pies*$converPC;
print "<b>CONVERSIÓN PIES - CENTÍMETROS</b><br/>n";
print "$pies pies son $resultadoPI centímetros<br/><br/>n";
} else {
print "<b>Error en pies</b><br/>n";
print "Debe introducir un número entero mayor o igual que cero<br/><br/>n";
$resultadoPI = 0;
}
if (is_numeric($pulgadas) && $pulgadas >= 0) {
$resultadoPU = $pulgadas*$converPlC;
print "<b>CONVERSIÓN PULGADAS - CENTÍMETROS</b><br/>n";
print "$pulgadas pulgadas son $resultadoPU centímetrosn";
} else {
print "<b>Error en pulgadas</b><br/>n";
print "Debe introducir un número mayor o igual que ceron";
$resultadoPU = 0;
}
It makes your code fixed but it doesn't look good. To make it better, we will need a sensible output and also we definitely should separate the calculations from the output. So here goes the refactored version
$converPlC = 2.54;
$converPC = $converPlC * 12;
$pies = $_REQUEST["pies"];
$pulgadas = $_REQUEST["pulgadas"];
if (!(ctype_digit($pies) && $pies >= 0) || !(is_numeric($pulgadas) && $pulgadas >= 0)) {
$title = "Invalid input data";
$message = "Input must be a positive number or zero";
} else {
$resultadoPI = $pies*$converPC;
$resultadoPU = $pulgadas*$converPlC;
$resultado = $resultadoPU + $resultadoPI;
if ($resultadoPU && $resultadoPI) {
$title = "CONVERSIÓN PIES Y PULGADAS - CENTÍMETROS";
$message = "$pies pies y $pulgadas pulgadas son $resultado centímetros";
} elseif ($resultadoPI) {
$title = "CONVERSIÓN PIES - CENTÍMETROS";
$message = "$pies pies son $resultado centímetros";
} elseif ($resultadoPU) {
$title = "CONVERSIÓN PULGADAS - CENTÍMETROS";
$message = "$pulgadas pulgadas son $resultado centímetros";
} else {
$title = "Invalid input data";
$message = "Enter at least one value";
}
}
?>
<b><?=$title?></b><br/>
<?=$message?><br/><br/>
$endgroup$
add a comment |
$begingroup$
Main issues with this code are
- It doesn't meet the requirements (so doesn't the code in the other answer).
- Its result is not very useful if you ever try to actually use it.
- Nearly half of this code just duplicates itself or plain useless.
So here goes your homework
$converPlC = 2.54;
$converPC = $converPlC * 12;
$pies = $_REQUEST["pies"];
$pulgadas = $_REQUEST["pulgadas"];
if (ctype_digit($pies) && $pies >= 0) {
$resultadoPI = $pies*$converPC;
print "<b>CONVERSIÓN PIES - CENTÍMETROS</b><br/>n";
print "$pies pies son $resultadoPI centímetros<br/><br/>n";
} else {
print "<b>Error en pies</b><br/>n";
print "Debe introducir un número entero mayor o igual que cero<br/><br/>n";
$resultadoPI = 0;
}
if (is_numeric($pulgadas) && $pulgadas >= 0) {
$resultadoPU = $pulgadas*$converPlC;
print "<b>CONVERSIÓN PULGADAS - CENTÍMETROS</b><br/>n";
print "$pulgadas pulgadas son $resultadoPU centímetrosn";
} else {
print "<b>Error en pulgadas</b><br/>n";
print "Debe introducir un número mayor o igual que ceron";
$resultadoPU = 0;
}
It makes your code fixed but it doesn't look good. To make it better, we will need a sensible output and also we definitely should separate the calculations from the output. So here goes the refactored version
$converPlC = 2.54;
$converPC = $converPlC * 12;
$pies = $_REQUEST["pies"];
$pulgadas = $_REQUEST["pulgadas"];
if (!(ctype_digit($pies) && $pies >= 0) || !(is_numeric($pulgadas) && $pulgadas >= 0)) {
$title = "Invalid input data";
$message = "Input must be a positive number or zero";
} else {
$resultadoPI = $pies*$converPC;
$resultadoPU = $pulgadas*$converPlC;
$resultado = $resultadoPU + $resultadoPI;
if ($resultadoPU && $resultadoPI) {
$title = "CONVERSIÓN PIES Y PULGADAS - CENTÍMETROS";
$message = "$pies pies y $pulgadas pulgadas son $resultado centímetros";
} elseif ($resultadoPI) {
$title = "CONVERSIÓN PIES - CENTÍMETROS";
$message = "$pies pies son $resultado centímetros";
} elseif ($resultadoPU) {
$title = "CONVERSIÓN PULGADAS - CENTÍMETROS";
$message = "$pulgadas pulgadas son $resultado centímetros";
} else {
$title = "Invalid input data";
$message = "Enter at least one value";
}
}
?>
<b><?=$title?></b><br/>
<?=$message?><br/><br/>
$endgroup$
Main issues with this code are
- It doesn't meet the requirements (so doesn't the code in the other answer).
- Its result is not very useful if you ever try to actually use it.
- Nearly half of this code just duplicates itself or plain useless.
So here goes your homework
$converPlC = 2.54;
$converPC = $converPlC * 12;
$pies = $_REQUEST["pies"];
$pulgadas = $_REQUEST["pulgadas"];
if (ctype_digit($pies) && $pies >= 0) {
$resultadoPI = $pies*$converPC;
print "<b>CONVERSIÓN PIES - CENTÍMETROS</b><br/>n";
print "$pies pies son $resultadoPI centímetros<br/><br/>n";
} else {
print "<b>Error en pies</b><br/>n";
print "Debe introducir un número entero mayor o igual que cero<br/><br/>n";
$resultadoPI = 0;
}
if (is_numeric($pulgadas) && $pulgadas >= 0) {
$resultadoPU = $pulgadas*$converPlC;
print "<b>CONVERSIÓN PULGADAS - CENTÍMETROS</b><br/>n";
print "$pulgadas pulgadas son $resultadoPU centímetrosn";
} else {
print "<b>Error en pulgadas</b><br/>n";
print "Debe introducir un número mayor o igual que ceron";
$resultadoPU = 0;
}
It makes your code fixed but it doesn't look good. To make it better, we will need a sensible output and also we definitely should separate the calculations from the output. So here goes the refactored version
$converPlC = 2.54;
$converPC = $converPlC * 12;
$pies = $_REQUEST["pies"];
$pulgadas = $_REQUEST["pulgadas"];
if (!(ctype_digit($pies) && $pies >= 0) || !(is_numeric($pulgadas) && $pulgadas >= 0)) {
$title = "Invalid input data";
$message = "Input must be a positive number or zero";
} else {
$resultadoPI = $pies*$converPC;
$resultadoPU = $pulgadas*$converPlC;
$resultado = $resultadoPU + $resultadoPI;
if ($resultadoPU && $resultadoPI) {
$title = "CONVERSIÓN PIES Y PULGADAS - CENTÍMETROS";
$message = "$pies pies y $pulgadas pulgadas son $resultado centímetros";
} elseif ($resultadoPI) {
$title = "CONVERSIÓN PIES - CENTÍMETROS";
$message = "$pies pies son $resultado centímetros";
} elseif ($resultadoPU) {
$title = "CONVERSIÓN PULGADAS - CENTÍMETROS";
$message = "$pulgadas pulgadas son $resultado centímetros";
} else {
$title = "Invalid input data";
$message = "Enter at least one value";
}
}
?>
<b><?=$title?></b><br/>
<?=$message?><br/><br/>
edited 10 hours ago
answered 15 hours ago
Your Common SenseYour Common Sense
3,6871528
3,6871528
add a comment |
add a comment |
DaburuKao is a new contributor. Be nice, and check out our Code of Conduct.
DaburuKao is a new contributor. Be nice, and check out our Code of Conduct.
DaburuKao is a new contributor. Be nice, and check out our Code of Conduct.
DaburuKao is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Code Review Stack Exchange!
- 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.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f213791%2fasking-2-values-feet-and-inches-and-it-converts-them-to-centimeters%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
$begingroup$
I wanted to shorten this code or improve it. In stackoverflow they said to me that I should post this here, where should I post this code if I want that someone can help me to shorten and improve this code?
$endgroup$
– DaburuKao
16 hours ago
$begingroup$
@DaburuKao - Just to confirm: is this working code? If so, it is okay to post this here. Also, I am not sure how much this code can be reduced in size. Do you still want a review if the results don't offer much of a reduction in size?
$endgroup$
– John Conde
16 hours ago
$begingroup$
As I said before yes, this code worked for me as intended. And I would accept a review about my code, possible reduces in size or improvements...anything ^^
$endgroup$
– DaburuKao
16 hours ago