Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialMarwa Rashad
4,198 PointsI cannot get through this challenge1
I need to know how to get through task 2 of this challenge. Thanks in advance!
<?php
include "pagination.php";
/* add function here */
function pagination($total_pages, $current_page, $section, $search) {
/* setting pagination variable */
$pagination = "<div class=\"pagination\">";
$pagination .= "Pages: ";
for ($i = 1;$i <= $total_pages;$i++) {
if ($i == $current_page) {
$pagination .= " <span>$i</span>";
} else {
$pagination .= " <a href='catalog.php?";
if (!empty($search)) {
$pagination .= "s=".urlencode(htmlspecialchars($search)) . '&' ;
} else if (!empty($section)) {
$pagination .= "cat=".$section . '&';
}
$pagination .= "pg=$i'>$i</a>";
}
}
$pagination .= "</div>";
return $pagination;
echo $pagination;
};
/* displaying the pagination */
$pagination(\$total_pages, \$current_page, \$section, \$search);
1 Answer
deebird
7,558 PointsYou can remove the echo from within your function and use return instead. Also they are asking you to echo the function at the end and you dont need the backslashes before your parameters
<?php
include "pagination.php";
/* add function here */
function pagination($total_pages, $current_page, $section, $search){
/* setting pagination variable */
$pagination = "<div class=\"pagination\">";
$pagination .= "Pages: ";
for ($i = 1;$i <= $total_pages;$i++) {
if ($i == $current_page) {
$pagination .= " <span>$i</span>";
} else {
$pagination .= " <a href='catalog.php?";
if (!empty($search)) {
$pagination .= "s=".urlencode(htmlspecialchars($search)) . '&' ;
} else if (!empty($section)) {
$pagination .= "cat=".$section . '&';
}
$pagination .= "pg=$i'>$i</a>";
}
}
$pagination .= "</div>";
return $pagination;
}
/* displaying the pagination */
echo pagination($total_pages, $current_page, $section, $search);
Marwa Rashad
4,198 PointsMarwa Rashad
4,198 PointsThank u it worked!