Add 5 to a variable when a button is clicked, and re-run a for loop
Posted on
16th Feb 2014 07:03 pm by
admin
So I'm making a feedback sort of section on a website with MySQL and PHP, I've gotten the script to do everything I want except for this. I want the script to only show 5 at a time (which i have accomplished no problem), but I'm also trying to make it so that when the user clicks a button it will show the next 5 records in the database so they can view all records, but only 5 at a time. (I hope this makes sense). So I need the button to add 5 to my $start variable, and then re-run my for loop.
$start = 0;
Did you know?Explore Trending and Topic pages for more stories like this.
echo $start . "<br /><br />";
$result2 = mysql_query("SELECT * FROM testtable LIMIT $start,5") or die(mysql_error());
$row2 = mysql_fetch_array($result2);
for($counter = 1; $counter <= 5; $counter += 1)
{
echo $row2['ID'] . "<br />";
echo " Subject:<b><font color='red'> " . $row2['Subject'] . "</font></b>";
echo "<br />Message: <b>" . $row2['Message'] . "</b><br /><br />";
$row2 = mysql_fetch_array($result2);
}
mysql_close($con)
?>
<br />
<form>
<input type="button" value="submit" onclick="<?php $start += 5; ?>" />
</form>
<?php echo $start; ?>
Any help would be greatly appreciated!
No comments posted yet
Your Answer:
Login to answer
119
50
Other forums
Help with some dates
I have a list of dates in an array:
$mondays = array(
strtotime("October 12, 2009
Request for tunning the below query
Hi,
Can any one help me on the below query while improving the performance,
Does deleting the spmlog directory critical?
Hi Everyone,
Please, hope you could help me. We're having problems with the SAP backup. I
SAP Business Suite
Hi all:
Within the SAP Business Suite solution I would like to ask you the main differenc
Tree Menu
Hi guys,
Can anyone help me making a tree navigation system? I have a site where I'm allowin
PHP url branch??
Functionally, using PHP, I'm doing a test of login input submitted by a user via an html form in a f
Need help to modify php ELSE code
I'm trying to find a way to have the php code display a message if there is no inventory listed in t
ORA-00932: inconsistent datatypes: expected - got CLOB
SO : windows xp
database : XE
there is a table (transito) with two fields of clob
Alternate messaging
I have 4 strings in MySQL db1
$string1 : Hello
$string2 : Hi
$string3 : Great
$strin
Using mysql_real_escape_string for displayed content
On my website users can input data into a textarea and it will store it in the mysql database. But,