Jump to content

[SOLVED] For loops with increment other than one


HoTDaWg

Recommended Posts

hi there,

 

im creating a simple for loop statement with a simple form to go along with it.

here is my script:

<?php
print<<<HTML
<html>
<head>
<title>Activity Two- inc to start and stop counting as well increment to increase by</title>
</head>
<body>
<form method="post">
<input type = "text" name = "startint" value="start integer"><br>
<input type = "text" name = "stopint" value="stop integer"><br>
<input type = "text" name = "incr" value="increment to increase by"><br>
<input type = "submit">
</form>
HTML;
if (isset($_POST['startint']) && isset($_POST['stopint'])  && isset($_POST['incr']))
{
$startint = $_POST['startint'];
$stopint = $_POST['stopint'];
$incr = $_POST['incr'];
#this didnt work either settype($incr,"integer");
for($i = &$startint; $i <= $stopint; $i + $incr)
{
	print "<br>". $i;
}
}
?>

the issue is that it just echos the number 10 repeatedly. why is it that if i set the increment to $i ++ it works but not when i set the increment to anything other than one?

any help would be greatly apprecaited

thanks.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.