code help - pagination


Posted on 16th Feb 2014 07:03 pm by admin

Hi all, I have this code, basically a user logs into my site and they get this page.

The problem I have is that the pagination isn't working, and I can figure out why. I dont get any errors.

Can you help please. If you need any more info, just shout. Ta muchly

Code: <?php
include("includes/dbconnect120-gem.php");
include("includes/db_auth_hp.php");
include("includes/functions.php");
$username = $result['username'];
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/templ8t.dwt.php" codeOutsideHTMLIsLocked="false" -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="css/layout.css" rel="stylesheet" type="text/css" />
<link href="css/text.css" rel="stylesheet" type="text/css" />
<!-- InstanceBeginEditable name="doctitle" -->
<title>Untitled Document</title>
<!-- InstanceEndEditable -->
<!-- InstanceBeginEditable name="head" -->
<script language="javascript" type="text/javascript">
<!--
function showhide(id) {
if(document.getElementById(id).style.display == 'none') {
document.getElementById(id).style.display = 'block';
} else {
document.getElementById(id).style.display = 'none';
}
}
-->
</script
<!-- InstanceEndEditable -->
<style type="text/css">
<!--
.style1 {color: #FFFFFF}
.H2 {
font-size: x-large;
font-family: Arial, Helvetica, sans-serif;
background-color: #FFFF00;
}
.link {color: #FFFF33}
-->
</style>


</head>
<body>
<div class="wrapper">
<div class="header">
</div>
<div class="body">
<!-- InstanceBeginEditable name="bodytext" -->
Hello, <?php echo ucwords($username); ?> you are now logged in.

<?php

// find out how many rows are in the table
$sql = "SELECT COUNT(*) FROM articles";
$result = mysql_query($sql) or trigger_error("SQL", E_USER_ERROR);
$r = mysql_fetch_row($result);
$numrows = $r[0];

// number of rows to show per page
$rowsperpage = 1;
// find out total pages
$totalpages = ceil($numrows / $rowsperpage);

// get the current page or set a default
if (isset($_GET['currentpage']) && is_numeric($_GET['currentpage'])) {
// cast var as int
$currentpage = (int) $_GET['currentpage'];
} else {
// default page num
$currentpage = 1;
} // end if

// if current page is greater than total pages...
if ($currentpage > $totalpages) {
// set current page to last page
$currentpage = $totalpages;
} // end if
// if current page is less than first page...
if ($currentpage < 1) {
// set current page to first page
$currentpage = 1;
} // end if

// the offset of the list, based on current page
$offset = ($currentpage - 1) * $rowsperpage;

//Gets news.
$sql = "SELECT * FROM articles ORDER BY ID DESC";
$result = mysql_query($sql);
//Displays the results.
while($row = mysql_fetch_array($result)){
$news_title = nl2br($row['Title']);
$news_subtitle = nl2br($row['SubTitle']);
$news_post = nl2br($row['Article']);
$post_id = $row['ID'];

echo $news_title;?>

<?php echo $news_subtitle; ?>

<?php echo $news_post; ?>


<!-- END DISPLAY NEWS -->

<?php
$csql = "SELECT comments.tstamp, login.username, comments.post
FROM comments
LEFT JOIN login
ON comments.userid = login.userid
WHERE comments.articleid = $post_id
ORDER BY comments.postid DESC";

$cquery = mysql_query($csql);
$ccount = mysql_num_rows($cquery);
if($ccount == 0) {
$comments_number = '<a href="comment.php?post='.$post_id.'" target="_self">No Comments</a>';
} else {
$comments_number = '<a href="#coms'.$post_id.'" onclick="showhide('c'.$post_id.'');">Comments('.$ccount.')</a>';
}
?>

<p class="right"><?php echo $comments_number; ?><a name="coms<?php echo $post_id; ?>"></a>&nbsp;&nbsp;&nbsp;</p>
<div style="display:none" id="<?php echo 'c'.$post_id; ?>" >
<?php
if($ccount != 0) {

while($crow = mysql_fetch_array($cquery)) {
$ctime = $crow['tstamp'];
$cusername = ucwords($crow['username']);
$cmessage = $crow['post'];
echo "<hr />n";
echo '<p><span class="bold">'.$cusername.':</span> '.nl2br($cmessage)."n";
echo '<br /><span class="bold">Posted: </span>';
if(timeago($ctime) == '') {
echo "Just.n";
}
elseif(strlen(timeago($ctime)) < 16) {
echo str_replace('and ', '', timeago($ctime)).'ago.</p>'."n";
} else {
echo timeago($ctime).'ago.</p>'."n";
}
}

$more = 'Leave a Comment';

echo '<p class="right"><a href="comment.php?post='.$post_id.'" target="_self">'.$more.'</a></p>';
}
?>
</div>
<?php
} // end while

/****** build the pagination links ******/
// range of num links to show
$range = 4;

// if not on page 1, don't show back links
if ($currentpage > 1) {
// show << link to go back to page 1
echo " <a href='{$_SERVER['PHP_SELF']}?currentpage=1'><<</a> ";
// get previous page num
$prevpage = $currentpage - 1;
// show < link to go back to 1 page
echo " <a href='{$_SERVER['PHP_SELF']}?currentpage=$prevpage'><</a> ";
} // end if

// loop to show links to range of pages around current page
for ($x = ($currentpage - $range); $x < (($currentpage + $range) + 1); $x++) {
// if it's a valid page number...
if (($x > 0) && ($x <= $totalpages)) {
// if we're on current page...
if ($x == $currentpage) {
// 'highlight' it but don't make a link
echo " [<b>$x</b>] ";
// if not current page...
} else {
// make it a link
echo " <a href='{$_SERVER['PHP_SELF']}?currentpage=$x'>$x</a> ";
} // end else
} // end if
} // end for

// if not on last page, show forward and last page links
if ($currentpage != $totalpages) {
// get next page
$nextpage = $currentpage + 1;
// echo forward link for next page
echo " <a href='{$_SERVER['PHP_SELF']}?currentpage=$nextpage'>></a> ";
// echo forward link for lastpage
echo " <a href='{$_SERVER['PHP_SELF']}?currentpage=$totalpages'>>></a> ";
} // end if
/****** end build pagination links ******/
?>





<!-- InstanceEndEditable --> </div>
<div class="sidebar">
<!-- MENU -->
<BR><?php
include "includes/menujs.js";
include "includes/menucss.css";
include "includes/menu.html";
?>
</p>
<p>

<!-- InstanceBeginEditable name="sidebar" -->
<div class="sidebartitle">
Latest News</div>


<div class="sidebartext">
</div>
<div class="sidebartitle">
Coming Soon </div>
<div class="sidebartext">
</div>
<!-- InstanceEndEditable --> </p>

</div>

</div>
<div class="clear"></div>
<div class="copyright">
<div align="center" class="style1">&copy;Copyright 2010 Bradley Stoke Judo Club || Site Designed by Gem Gale || Site Hosted by <a href="http://www.wotwebsystems.com" class="link">WOT Web Systems</a></div>
</div>

</body>
<!-- InstanceEnd --></html>

Posted on 12th May, 2017
Donnataf
Absolutely NEW update of SEO/SMM software "XRumer 16.0 + XEvil 3.0":
captchas solving of Google, Facebook, Bing, Hotmail, SolveMedia, Yandex,
and more than 8400 another size-types of captchas,
with highest precision (80..100%) and highest speed (100 img per second).
You can connect XEvil 3.0 to all most popular SEO/SMM programms: XRumer, GSA SER, ZennoPoster, Srapebox, Senuke, and more than 100 of other software.

Interested? There are a lot of demo videos about XEvil in YouTube.
Good luck ;)
Posted on 18th May, 2017
SandraMub
Absolutely NEW update of SEO/SMM package "XRumer 16.0 + XEvil 3.0":
captcha solving of Google, Facebook, Bing, Hotmail, SolveMedia, Yandex,
and more than 8400 another categories of captchas,
with highest precision (80..100%) and highest speed (100 img per second).
You can connect XEvil 3.0 to all most popular SEO/SMM programms: XRumer, GSA SER, ZennoPoster, Srapebox, Senuke, and more than 100 of other software.

Interested? There are a lot of impessive videos about XEvil in YouTube.
See you later ;)
Posted on 05th Jun, 2017
SamuelDaura
CHEAP CIALIS HERE
http://imgur.com/a/V4WUj
genaric cialis|
amad tootla cancer specialist|
buy generic cialis|
cardiovascular specialist assistant|
original cialis|
Posted on 14th Jun, 2017
Robertblawl
http://www.gagprincess.com
Posted on 23rd Jun, 2017
Robertblawl
http://www.gagprincess.com
Posted on 25th Jun, 2017
Peterbrura
http://domakostroma.com/
Posted on 02nd Jul, 2017
WaynePal
http://bit.ly/2tw1PvE
Posted on 09th Jul, 2017
TimothyFub
Hi there! cheapest mexican pharmacy online good web page.
Posted on 19th Aug, 2017
alaliaapolycl
Visit our website Alaliaa to take more information.
Posted on 03rd Sep, 2017
TimothyJet
http://haushaltshop.eu/ RekunsegeHeils
Posted on 14th Sep, 2017
masha2
Привет.
Posted on 25th Sep, 2017
AuigosTatty
Tramadols pills is employed to italian autostrada done with representing Buy Tramadol 150mg morose to regimen painstaking pain.
Tramadol, commonly known as Tramatas, Tranzex, buy generic ultram master Aurotrama and Tramol-SR is hand-me-down to lift normal to within via respectability of inexorable pain. It also may be euphemistic pre-owned to seat itch caused buy Ultram visa tramadols searching to surgery and long-lived conditions such as cancer or combined pain. ultram buy tramadol pills 100mg works sooner than decreasing the discernment's position and rejoin to pain. It also reduces the walk or immensity of the smarting order tramadol mastercard signal passed from inseparable obduracy to another. This medication is again prescribed as a substitute for of other uses; importune your doctor or posologist championing the allowances of more information.

Tramadol Ultram 50-200mg Order Online
Posted on 11th Oct, 2017
NIJesse
twvj.com
Posted on 03rd Nov, 2017
Corpoi87
osteoren recensioni


Nicely put. Regards!
Posted on 04th Dec, 2017
Steklobanki-bug
Крышки для консервирования оптом в Твери
- Стеклобанки оптом


































































Promo Code: ABYRVALG251295



Posted on 11th Dec, 2017
KevinhaB
АлкоБарьер – эффективное средство борьбы с алкоголизмом

Устраняет тягу к алкоголю
Восстанавливает поврежденные клетки печени
Выводит токсины из организма
Успокаивает нервную систему
Не имеет вкуса и запаха

АЛКОБАРЬЕР – СКАЖИ «НЕТ» АЛКОЗАВИСИМОСТИ!

==>> ow.ly/Od8Z30g0Mg3
==>> is.gd/ORMsK8
Posted on 20th Dec, 2017
ClaudePt
Tranquilite, equilibre et robustesse sont les mots principaux qui definissent notre sélection de jouets pour enfants. Spécialistes de l’univers velo enfant et des jouets d'exterieur, avec jouetjeu.com, nous plebiscitons des jouets stables et tous manufactures en Europe, garantis au meilleur prix chaque mois.
Posted on 31st Dec, 2017
XRumerTest
Hello. And Bye.
Posted on 20th Jul, 2018
soymn
Здравствуйте!
Предлагаю ТОПОВЫЙ курс:

как заработать на youtube с нуля
Posted on 22nd Jul, 2018
almazburTam
http://xrumer.su/ - Регистрация сайта в каталогах http://xrumer.su/ - xrumer.su
Posted on 17th Jan, 2019
Miltonloush
????? ?????? [url=https://clck.ru/F3Cqh]????? ?? ??????? ??????? ?????? ??????.[/url]
Posted on 17th Feb, 2019
Richardnom
??????? ?????????

??????? ?????????
Posted on 03rd Apr, 2019
JamesSet
???????? ???????? ???

???????? ???????? ???
Posted on 18th Apr, 2019
mat
Hello. And Bye.
Posted on 19th Apr, 2019
BruceruS
?????? ?????? ??????

????????? ?????
Posted on 22nd Apr, 2019
StevenFaf
?????? ??????????

????????? ??? ????????
Posted on 29th Apr, 2019
LauraEmbaw
????????? Samsung ???????????? ?? ????? ??????? ????????????? ? ?????? ??????? ?????????. ??????? ?????? ????????? ????????? ??????? ????? ???????? ??????????? ?? ??????????? ????, ????????? ?? http://no-lamer.ru
Posted on 09th May, 2019
Joshuascouh
??? ???????????

drester 3600 ?????
Posted on 05th Jul, 2019
JamesFeese
??????? ? ?????????

[url=http://advocat-dnepr.com.ua/]???????? ??????? ?????[/url]
Posted on 16th Jul, 2019
Jamesshabs
?????-??????

https://free.tw-sportslottery.com/
Posted on 16th Jul, 2019
Darylsop
???-??????????????????JM-180B?????????????????????????????????????

https://mic-shop.com/
Posted on 16th Jul, 2019
BrianBub
???-??????????????????JM-180B?????????????????????????????????????

https://mic-shop.com/
Posted on 17th Jul, 2019
RbaseoGisk
* ???????? ?????? ????? ?????
· ?? ??? ????? ?????????? ???????? ?? ??? ????
- ??? ???????? ??????? ?? 223 ???????????? ??????, 44 ??
· ?????, ???, ? ?????? ????? ? ????????????
- ??????, ?????? ?????? ????????????
- ?????? ?????
* ?????? ?????????????

https://baseo.ru
Posted on 17th Jul, 2019
RafaelLoomb
??? ?? ??????

http://interior-plan.com/
Posted on 17th Jul, 2019
Enriquesep
unethost???????? http://blog.unethost.com/
Posted on 18th Jul, 2019
Enriquesep
unethost???????? http://blog.unethost.com/
Posted on 19th Jul, 2019
Jamesshabs
?????-??????

https://free.tw-sportslottery.com/
Posted on 19th Jul, 2019
BrianBub
???-??????????????????JM-180B?????????????????????????????????????

https://mic-shop.com/
Posted on 19th Jul, 2019
Justinfus
???-??????????????????JM-180B????????????????????????????????????? https://mic-shop.com/
Posted on 22nd Jul, 2019
Jamesshabs
?????-??????

https://free.tw-sportslottery.com/
Posted on 22nd Jul, 2019
Tyronecrync
????????? - ???? ???? ????

http://50-video.com/
Posted on 22nd Jul, 2019
Sammyprere
???????????????A????????????DVD http://www.av-50.com/
Posted on 22nd Jul, 2019
RafaelLoomb
??? ?? ??????

http://interior-plan.com/
Posted on 22nd Jul, 2019
Darylsop
???-??????????????????JM-180B?????????????????????????????????????

https://mic-shop.com/
Posted on 22nd Jul, 2019
BrianBub
???-??????????????????JM-180B?????????????????????????????????????

https://mic-shop.com/
Posted on 22nd Jul, 2019
Justinfus
???-??????????????????JM-180B????????????????????????????????????? https://mic-shop.com/
Posted on 22nd Jul, 2019
Enriquesep
unethost???????? http://blog.unethost.com/
Posted on 23rd Jul, 2019
Jamesshabs
?????-??????

https://free.tw-sportslottery.com/
Posted on 23rd Jul, 2019
Justinfus
???-??????????????????JM-180B????????????????????????????????????? https://mic-shop.com/
Posted on 24th Jul, 2019
Enriquesep
unethost???????? http://blog.unethost.com/
Posted on 21st Aug, 2019
WilliamNer
trust pharmacy canadian generic viagra in us pharmacies canada pharmacy no prescription antibiotics/#trust pharmacy canadian
Posted on 30th Aug, 2019
Sovialen
?????????? ?????????? ????????? ?????????? ??????? ?????? ????? ?????.
Posted on 04th Sep, 2019
XRumerTest
Hello. And Bye.
Posted on 20th Sep, 2019
RaymondBeaps
????????????????

https://168cash.com.tw/
Posted on 29th Sep, 2019
CaseyNox
XYZ|????|??|??????|????|????|?????1000?200

http://xyz.net.tw/
Posted on 06th Oct, 2019
CaseyNox
XYZ|????|??|??????|????|????|?????1000?200

http://xyz.net.tw/
Posted on 06th Oct, 2019
EmmittMic
???????? ????? ??AV????? ???????? – AV????.????(??18???)

http://avgood-store.com/
Posted on 15th Oct, 2019
DonaldCruts
unethost???????? ???????

http://blog.unethost.com/
Posted on 25th Oct, 2019
ThomasCoige
????????????!
????? ??? ????? ????.

??? ??????? ????????...
?? ?????? ????? ?? ?????? ????? ????? ??????? ? ?????????
?????? ?????????? ?? ????:
[b]
https://werecommend.ru/review

[/b]
Posted on 27th Oct, 2019
stydayGah
essay for scholarships http://write-papers.essayhave.dasma-triskelion.site dialogue in an essay example
Posted on 28th Oct, 2019
DonaldCruts
unethost???????? ???????

http://blog.unethost.com/
Posted on 29th Oct, 2019
Michaelpayom
?????? ???

?????? ???
Posted on 05th Nov, 2019
Donaldchaws
XYZ|????|??|??????|????|????|?????1000?200

http://xyz.net.tw/
Posted on 05th Nov, 2019
ThomasItank
?????? ? ???????????? ??????? ?????

?????? ? ????????? ?????????
Posted on 07th Nov, 2019
RaymondBeaps
????????????????

https://168cash.com.tw/
Posted on 08th Nov, 2019
MichaelCooke
?????? ??????

https://gambling777.pro/malina-casino/
Posted on 12th Nov, 2019
SamuelEmula
??? ??????

????? ?????? ????
Posted on 12th Nov, 2019
AndrewVok
???????? ????? ?????? ???????????

[url=https://moneyconsulting.ru/blog/exclusive-vip-coaching-ot-andreya-chernyih-proektyi-passivnyiy-dohod-ot-200-000-dollarov-v-god-i-1-000-000-dollarov-na-partnerskoy-programme-andreya-chernyih/]???????? ????? [/url]
Posted on 14th Nov, 2019
Martyced
????????? https://fmb.tw/
Posted on 15th Nov, 2019
JasonKam
?????? ??????, ???????? ??????? ? ???? ?????? ????????? ? ??????? ????????

[url=http://55kino.ru/35274-chernaja-pautina-4-serija.html]http://55kino.ru/35274-chernaja-pautina-4-serija.html[/url]
Posted on 15th Nov, 2019
EmmittMic
???????? ????? ??AV????? ???????? – AV????.????(??18???)

http://avgood-store.com/
Posted on 19th Nov, 2019
Hollyseeva
Only for you....
Cheap personal essay writers website usa
professional assignment editing site for phd
Cheap annotated bibliography writer website online
how to submit resume online
https://essaywriting.vip/a-bad-experience-at-school-essay/business-school-research-proposal-outline.php
Posted on 20th Nov, 2019
ScottClida
??????????? ?????

????????? ?????
Posted on 20th Nov, 2019
Larrydiots
??????? ????? ????????? ??????? «??????» ?????! ???????? ? ?????? ??????? ?????? ?????????? ????? ??? ?.?. ??????? «??????» ????? ????????? ????????? ?????????????.
???????? ???? ??????? ???????? ????????? ????????????? ????? ???? ????????, ?.?. ????????? ??? ?????????? ??????????? ???????? - ???????? ????????? ???????????
Posted on 21st Nov, 2019
Bertramcek
??????????? ?????

????????? ?????
Posted on 21st Nov, 2019
CaseyNox
XYZ|????|??|??????|????|????|?????1000?200

http://xyz.net.tw/
Posted on 21st Nov, 2019
Martyced
????????? https://fmb.tw/
Posted on 21st Nov, 2019
RalphOxype
???????? ?????

????????? ?????
Posted on 23rd Nov, 2019
DonaldCruts
unethost???????? ???????

http://blog.unethost.com/
Posted on 25th Nov, 2019
Larrydiots
??? ?????? ? ????????? ????????? ??????? «??????» ?????! ?????? ? ???????? ??????? ?????? ?????????? ????? ??? ?.?. ??????? «??????» ????? ????????? ????????? ?????????????.
???????? ????????? ????????????? ????? ???? ????????, ?????? ??? ?????????? ????????????? ??????????? ???????? - ???????? ?.?.
Posted on 27th Nov, 2019
Kennethrof
????????????? ???? ?? ?????????????

?????? ?????? ?? 3 ???
Posted on 27th Nov, 2019
Jordanreips
????? ??????????? ??????????

??? ? ?????? ?? ????????????? ?? ????????
Posted on 28th Nov, 2019
Leoneltuh
?????


https://forum.tw-sportslottery.com/thread-119-1-1.html
Posted on 29th Nov, 2019
Eliasunsot
?????????? ????? ??????? ????? ?? ?????

?????????? ????? ??????? ?????
Posted on 30th Nov, 2019
FrankTab
?????? ??? ? ?????????? ?????? ?????????????

???????? ??? ?????????? ????? ????????????? ???????
Posted on 01st Dec, 2019
XRumerTest
Hello. And Bye.
Posted on 04th Dec, 2019
Jamesdearf
??????? ??????

??????? ??????
Posted on 04th Dec, 2019
DonaldCruts
unethost???????? ???????

http://blog.unethost.com/
Posted on 05th Dec, 2019
Leoneltuh
?????


https://forum.tw-sportslottery.com/thread-119-1-1.html
Posted on 07th Dec, 2019
EmmittMic
???????? ????? ??AV????? ???????? – AV????.????(??18???)

http://avgood-store.com/
Posted on 13th Dec, 2019
RaymondBeaps
????????????????

https://168cash.com.tw/
Posted on 23rd Dec, 2019
CaseyNox
XYZ|????|??|??????|????|????|?????1000?200

http://xyz.net.tw/
Posted on 30th Dec, 2019
EmmittMic
???????? ????? ??AV????? ???????? – AV????.????(??18???)

http://avgood-store.com/
Posted on 30th Dec, 2019
Leoneltuh
?????


https://forum.tw-sportslottery.com/thread-119-1-1.html
Posted on 09th Jan, 2020
CaseyNox
XYZ|????|??|??????|????|????|?????1000?200

http://xyz.net.tw/
Posted on 11th Jan, 2020
DonaldCruts
unethost???????? ???????

http://blog.unethost.com/
Posted on 11th Jan, 2020
XRumerTest
Hello. And Bye.
Posted on 14th Jan, 2020
Martyced
????????? https://fmb.tw/
Posted on 27th Feb, 2020
VincentiDevy
?????


https://forum.tw-sportslottery.com/thread-119-1-1.html
Posted on 01st Mar, 2020
EdwardVal
XYZ|????|??|??????|????|????|?????1000?200

http://xyz.net.tw/
Posted on 12th Mar, 2020
VincentiDevy
?????


https://forum.tw-sportslottery.com/thread-119-1-1.html
Posted on 12th Mar, 2020
Thomaskab
Game LIFE ????

https://gamelife.tw/portal.php
Posted on 16th Mar, 2020
Thomaskab
Game LIFE ????

https://gamelife.tw/portal.php
Posted on 18th Mar, 2020
BillieLup
unethost???????? ???????

http://blog.unethost.com/
Posted on 19th Mar, 2020
VincentiDevy
?????


https://forum.tw-sportslottery.com/thread-119-1-1.html
Posted on 19th Mar, 2020
WalterCax
????????????????

https://168cash.com.tw/
Posted on 29th Mar, 2020
SandraJem
Hurry up to look into loveawake.ru you will find a lot of interesting things





More info>>>

Click here!..
Posted on 16th Apr, 2020
maniiyao
Bestellen Sie SEO-Suchmaschinenoptimierung der Website, Bestellen Sie Website-Promotion-Services Bei allen Fragen wenden Sie sich an den Benutzernamen Skype pokras7777
Wir sammeln auch Basen
Posted on 08th May, 2020
GregoryDycle
?????


https://forum.tw-sportslottery.com/thread-119-1-1.html
Posted on 17th May, 2020
Keepvidpro686a
The Best Video Enhancer Software reviews 2020.
The Best free online YouTubetomp3 tools.
New flvto website.
The Best and stable video Downloader
New ytmp3 website
?????? ??????YouTube???????
Powerful and Fast Online YouTube Downloader
Free Youtube to mp3.
Posted on 18th May, 2020
Michaelcor
XYZ???????? http://xyz.net.tw/
Posted on 26th May, 2020
Michaelcor
XYZ???????? http://xyz.net.tw/
Posted on 29th May, 2020
KeithRah
XYZ|????|??|??????|????|????|?????1000?200

http://xyz.net.tw/
Posted on 30th May, 2020
Richardroava
unethost???????? ???????

http://blog.unethost.com/
Posted on 12th Jun, 2020
Aaronstest
????????????????

https://168cash.com.tw/
Posted on 23rd Jun, 2020
Michaelhiela
??av,av??,77av,77dvd,av????

https://77av.net/
Posted on 27th Jun, 2020
Richardroava
unethost???????? ???????

http://blog.unethost.com/
Posted on 29th Jun, 2020
Jamesapera
?????


https://forum.tw-sportslottery.com/thread-119-1-1.html
Posted on 06th Jul, 2020
Michaelcor
XYZ???????? http://xyz.net.tw/
Posted on 04th Aug, 2020
Josephswest
??? ??????? ??????? ? ????? ?? ??????? ???? ????????? ???????.


-------
[url=https://1poezd.ru/kupit/moskva-bryansk/]https://1poezd.ru/kupit/moskva-bryansk/[/url] https://1poezd.ru/
Posted on 09th Sep, 2020
SeptikTam

[url=http://septiki-nn.ru]?????? ?? ?????[/url] - ????????? ?? ????? [url=http://septiki-nn.ru]septiki-nn.ru[/url]
Posted on 18th Oct, 2020
Justinflief
Hi, here on the forum guys advised a cool Dating site, be sure to register - you will not REGRET it [url=https://bit.ly/2FBLy05]https://bit.ly/2FBLy05[/url]
Posted on 27th Oct, 2020
JamesBut
Hi, here on the forum guys advised a cool Dating site, be sure to register - you will not REGRET it [url=https://bit.ly/3kyTkH6]https://bit.ly/3kyTkH6[/url]
Posted on 05th Nov, 2020
LloydAdutt
Hi, here on the forum guys advised a cool Dating site, be sure to register - you will not REGRET it [url=https://bit.ly/3kZUqMg]https://bit.ly/3kZUqMg[/url]
Posted on 10th Nov, 2020
RobertTup
Hi, here on the forum guys advised a cool Dating site, be sure to register - you will not REGRET it [url=https://bit.ly/3l7MRDo]https://bit.ly/3l7MRDo[/url]
Posted on 11th Nov, 2020
BillieFab
Hi, here on the forum guys advised a cool Dating site, be sure to register - you will not REGRET it [url=https://bit.ly/3n4A98V]https://bit.ly/3n4A98V[/url]
Posted on 26th Nov, 2020
GregoryMup
Hi, here on the forum guys advised a cool Dating site, be sure to register - you will not REGRET it [url=https://bit.ly/39cc9gy]https://bit.ly/39cc9gy[/url]
Posted on 12th Dec, 2020
Jeremyademn
Hi, here on the forum guys advised a cool Dating site, be sure to register - you will not REGRET it [url=http://love-angels.site/]Love-Angels[/url]
Posted on 18th Dec, 2020
Kennethgaush
Hi, here on the forum guys advised a cool Dating site, be sure to register - you will not REGRET it [url=https://bit.ly/34nj4Ab]Love-Angels[/url]
Posted on 21st Dec, 2020
WilliamTek
Hi, here on the forum guys advised a cool Dating site, be sure to register - you will not REGRET it [url=https://bit.ly/34nj4Ab]https://bit.ly/34nj4Ab[/url]
Posted on 28th Dec, 2020
Bryanger
Hi, here on the forum guys advised a cool Dating site, be sure to register - you will not REGRET it [url=https://bit.ly/3hhve2N]https://bit.ly/3hhve2N[/url]
Posted on 30th Dec, 2020
PhilipNeove

?????? ??????????? ????? ??? ??????????????? ? ??????
Posted on 09th Jan, 2021
SeptikTam

[url=http://septiki-nn.ru]?????????????? ???????? ?? ???????? ?????[/url] - ????????? ?? ????? [url=http://septiki-nn.ru]septiki-nn.ru[/url]
Posted on 10th Jan, 2021
HymanDum
Online casino, first deposit bonus of $100 [url=https://bit.ly/2LG4A7Z]https://bit.ly/2LG4A7Z[/url]
Posted on 12th Jan, 2021
WeldonDix
Online casino, first deposit bonus of $100 [url=https://bit.ly/2LG4A7Z]https://bit.ly/2LG4A7Z[/url]
Posted on 20th Jan, 2021
RogerArted
XYZ ???????? ???????

https://man-r20.com/
Posted on 21st Jan, 2021
PatrickOvels
Hi, here on the forum guys advised a cool Dating site, be sure to register - you will not REGRET it [url=https://bit.ly/2LtgS3Z]https://bit.ly/2LtgS3Z[/url]
Posted on 02nd Feb, 2021
RonaldPearo
Hi, here on the forum guys advised a cool Dating site, be sure to register - you will not REGRET it [url=https://bit.ly/2MpL94b]https://bit.ly/2MpL94b[/url]
Posted on 06th Feb, 2021
Frankrow
Game LIFE ????

https://gamelife.tw/portal.php
Posted on 07th Feb, 2021
RussellDuH
????? ?OKLAO COFFEE?????????????????????? ??


https://first-cafe.com/
Posted on 14th Feb, 2021
Arthurspeab
????????????????

https://168cash.com.tw/
Posted on 14th Feb, 2021
Shawnguaps
????????????????

https://168cash.com.tw/
Posted on 17th Feb, 2021
Denniskex
???????

https://blog.oklaocoffee.tw/
Posted on 21st Feb, 2021
TerryPleak
XYZ????????


http://xyz.net.tw/
Posted on 25th Feb, 2021
DwightTug
XYZ ????

http://xyz.net.tw/
Posted on 04th Mar, 2021
Jamesrob
Hi, here on the forum guys advised a cool Dating site, be sure to register - you will not REGRET it [url=https://bit.ly/2MpL94b]https://bit.ly/2MpL94b[/url]
Posted on 25th Mar, 2021
AllenHew
Hi, cool video to watch for everyone [url=https://bit.ly/2PoSCl9]https://bit.ly/2PoSCl9[/url]
Posted on 30th Mar, 2021
MatthewMer
Hi, cool video to watch for everyone [url=https://bit.ly/3suWfVn]https://bit.ly/3suWfVn[/url]
Posted on 04th Apr, 2021
Chasespani
XYZ ???????? ???????

https://man-r20.com/
Posted on 06th Apr, 2021
LanceJally
????????????????

https://168cash.com.tw/
Posted on 08th Apr, 2021
RonaldRaw
The EU's medicines regulator says unusual blood clots should be listed as a very rare side effect of the AstraZeneca vaccine for Covid-19.
After a study looking at 86 European cases, the European Medicines Agency (EMA) concluded the benefits of the vaccine outweighed the risk.
Posted on 12th Apr, 2021
TerryPleak
XYZ????????


http://xyz.net.tw/
Posted on 14th Apr, 2021
Shawnowner
Hi, cool video to watch for everyone [url=https://bit.ly/3suWfVn]https://bit.ly/3suWfVn[/url]
Posted on 19th Apr, 2021
maygg
???????? seo ????????? ??????????? ?????, ???????? ?????? ?? ??????????? ????? ?? ???? ????????? ???????? ?? ?????? ?????????? ? ????? ????? pokras7777????????? ????? ??? ????
.??? ?? ???????? ???? ???????? ?????? ????? ???? ??? ?????? https://seoprofisional.ru/bazy ???? ?????? ? ????????? ?????????? ???? ??? ???????
Posted on 21st Apr, 2021
KevinFlete
Hi, here on the forum guys advised a cool Dating site, be sure to register - you will not REGRET it [url=https://bit.ly/3sCrmNV]https://bit.ly/3sCrmNV[/url]
Posted on 07th May, 2021
Harolddog
buy cialis or viagra [url=https://acialisi.com/]reviews on generic cialis[/url] cialis phone cases
Posted on 25th May, 2021
Charlesblott
Hi, look what a cool site I found, there you can win from $ 50 to $ 3000 , I managed to win $ 540, good luck to you [url=https://bit.ly/2SmXf0A]https://bit.ly/2SmXf0A[/url]
Posted on 02nd Jun, 2021
RogerArted
XYZ ???????? ???????

https://man-r20.com/
Posted on 02nd Jun, 2021
TerryPleak
XYZ????????


http://xyz.net.tw/
Posted on 17th Jun, 2021
Ramonutica
??????


https://deltamarketing.com.tw/
Posted on 25th Jun, 2021
y2mate907z
Hi friends, just came across this site and would love to post some handy website resource which might be help, thanks!
The online [url=https://youtufab.cc/en/]YouTube to mp4 1080P[/url] support all web browsers to Download YouTube to MP3 & MP4 in high quality.
[url=https://y2mate.ch]Y2mate downloader[/url] website.
Best free [url=https://flvto.ch/de]YouTube converter[/url] website.
[url=https://listentoyoutube.ch/id1/]youtube to mp3[/url].Miglior YouTube libero per MP3/MP4 Strumento scarico
Top ten [url=https://topten.ai/image-upscalers-review/]image upscaler[/url] review.
Best [url=https://keepvid.ch/en6/]youtube video downloader[/url] of 2021.
Best [url=https://makemkv.us/]Makemkv[/url] review site.
Posted on 26th Jun, 2021
RogerArted
XYZ ???????? ???????

https://man-r20.com/
Posted on 17th Jul, 2021
RogerArted
XYZ ???????? ???????

https://man-r20.com/
Posted on 17th Jul, 2021
TerryPleak
??????????????????????????????????????????

https://168cash.com.tw/
Posted on 22nd Jul, 2021
RichardGoarm
unethost???????? ???????

http://blog.unethost.com/
Posted on 22nd Jul, 2021
Richardvow
??????? ?OKLAO COFFEE?????????????????????? ???????

https://first-cafe.com/
Posted on 26th Jul, 2021
CameronCamma
Find local girls for one night stands using these free hookup dating sites and apps
[url=https://bit.ly/3eRG9jH]Dating apps[/url]
Posted on 26th Jul, 2021
CameronCamma
Find local girls for one night stands using these free hookup dating sites and apps
[url=https://bit.ly/3eRG9jH]Free dating sites[/url]
Posted on 03rd Aug, 2021
y2mate907z
Hello friends, just came across this amazing site and would love to post some handy website resource which might be help, thanks!
The online [url=https://youtufab.cc/en1/]YouTube to mp4 1080P[/url] support all web browsers to Download YouTube to MP3 & MP4 in high quality.
[url=https://y2mate.ch/en4/]Online video downloader[/url] website.
Best free [url=https://flvto.ch/en/]YouTube converter[/url] website.
[url=https://listentoyoutube.ch/ja1/]youtube to mp4[/url].Miglior YouTube libero per MP3/MP4 Strumento scarico
AI?????????????[url=https://topten.ai/ja/ai-image-background-remover-ja/]????[/url]??Web?????????????????????????????10???????????
Best [url=https://keepvid.ch/en6/]youtube video downloader[/url] of 2021.
Best [url=https://bestvideoconverter.org/]Video Converter[/url] review site.
Posted on 07th Aug, 2021
TerryPleak
??????????????????????????????????????????

https://168cash.com.tw/
Posted on 17th Aug, 2021
Terrycot
?? ??????? ??? ? ??????? ?????? ???????????
?? ??????? ????? ?????????????? ?????? ?? ??????? ????????,
?? ? ??? ????? ???? ??????????? ???????????? ? ?????? ???????? ??????????????? ?????, ????? ?? ?????? "???????? ???". ????????, ??? ?? ???????? ??????? ???????? ?????? ???????!

https://medbrat.site/lechenie-alkogolizma-cena-otzyvy/
https://medbrat.site/lechenie-alkogolizma-v-simferopole/
https://medalko.site/lechenie-alkogolizma-v-syktyvkare-anonimno/
https://medinfos.site/otzyvy-lechenie-ot-alkogolizma-v-voronezhe/
https://medsestra.site/category/lechenie-tabachnoy-zavisimosti-yaroslavl/page/171/
Posted on 31st Aug, 2021
TerryPleak
??????????????????????????????????????????

https://168cash.com.tw/
Posted on 15th Sep, 2021
bakhaTig
???? ?????????????? ?????????
http://drevtorg.xyz/events/6382903:Event:63435
Posted on 28th Oct, 2021
Kvvillsep
[url=https://signprint24.ru/]?? ?????? ??????????[/url]
Tegs: ?? ?????? ???? https://signprint24.ru/

[u]?????? ?? ???????[/u]
[i]?? ?????? ?? ???????[/i]
[b]?? ?????? ?? ??????? ??????[/b]
Posted on 06th Feb, 2022
Kvvillsep
Qiagen
Tegs: Qsonica https://chimmed.ru/manufactors/catalog?name=Qsonica

glentham.com
gold biotechnology, inc.,
goldbio
Posted on 05th Mar, 2022
SeptikTam

[url=http://lestnica-nn.ru/]?????????? ????????[/url] - ????????? ?? ????? [url=http://lestnica-nn.ru/]lestnica-nn.ru[/url]
Posted on 20th Mar, 2022
Kvvillsep
licor com
Tegs: licor.com https://chimmed.ru/

Shree Chemicals
Sigachi
Sigma Aldrich
Posted on 27th Mar, 2022
Kvvillsep
Cargill
Tegs: Carl Roth https://chimmed.ru/manufactors/catalog?name=Carl+Roth

??? ?????
?????
??????
Posted on 19th Apr, 2022
Kvvillsep
GE Healthcare
Tegs: GERSTEL https://chimmed.ru/manufactors/catalog?name=GERSTEL

Molcan Corporation
Molekula
NIBSC
Posted on 06th Jun, 2022
Kvvillsep
Marienfeld
Tegs: MasCom Technologies https://chimmed.ru/manufactors/catalog?name=MasCom+Technologies

?????? ?
??????-?
??????????? ???
Posted on 19th Jun, 2022
acuroyaefi
http://slkjfdf.net/ - Owlilego Utacvoqi djp.blap.indyaspeak.com.vas.vb http://slkjfdf.net/
Posted on 25th Jul, 2022
Kvvillsep
[url=https://chimmed.ru/products/-id=1480033 ]?????? ????????? ????????????????? ??? 2 ? ?????? [/url]
Tegs: ?????? ????????? ????????????????? ??? 2 ? ???????? https://chimmed.ru/products/-id=1480033

[u]????????? ???????? loctite 518 [/u]
[i]???????? [/i]
[b]???????? 100 200 ??? [/b]
Posted on 30th Jul, 2023
Lucilleasype
https://clck.ru/34acdr

Your Answer:

Login to answer
139 Like 16 Dislike
Previous forums Next forums
Other forums

am I using this for loop correctly
Dear buddies!

Right now I am generating a report with some details for all the dealers.

Using Curl_multi for processing multiple URLs
Hi,

I am at a loss as to how to implement this. I would like to be able to automatically assi

New to mysqli library - Multiple query problem
Greetings,

I am writing a batch program that executes 3 queries on a single page. Using mysql

Coding Critique
I was hoping someone could take a second and look down my code and see if they see any problems with

HOW to get the bind variables list.
I've the following problem : I've some SQL queries stored in my DB as VARCHAR2 values.
I need t

Help =( !! Upload Pics [PHP script]
Hello
I need help with a php script [MULTIPLE UPLOAD IMAGES] , where I want to add a feature (wat

Uploading/Downloading files stored in MySQL database
Hey all,

This problem just came up in my website and I'm having a hard time figuring out what

Help with forum quoting?
Hi im working on a forum and I have alomost finished it but i want a user quote system like twitter

Problems generating word documents on server side for security reasons
I have a problem with word documentation generation when generating a word document (docx) with PHP.

Help! refer to a friend script with captcha code
Hi guys, I am posting on here in desperate need for some help with an ongoing search I have been doi

Sign up to write
Sign up now if you have flare of writing..
Login   |   Register
Follow Us
Indyaspeak @ Facebook Indyaspeak @ Twitter Indyaspeak @ Pinterest RSS



Play Free Quiz and Win Cash