/    Sign up×
Community /Pin to ProfileBookmark

How To Use URLENCODE here…

hello friends,
I am Having lts of entries on one page.
so i have used paging.
but i am passing some special char like # in variables.
so how can i use URLENCODE in paging..
Example …

?>
<a href =”advballlistsearch.php?sortby=ball_name&man=<? echo urlencode($manu); ?>&txtballname=<? echo urlencode($ballname); ?>&select=<? echo urlencode($sel); ?>” >
Ball Name
</a>
<?

but how can i use it paging..
In this code????

for($i = 1; $i <= $NUMPAGES; $i++):

if($i == 1 && $PAGE > 1)

echo “<a href=”$PHP_SELF?man=$manu&txtballname=$ballname&select=$sel&sortby=$sortby&page=”.($PAGE – 1).”” onMouseOver=”status=’Go to the Previous Page’;return true;” onMouseOut=”status=’ ‘;return true;”>&#0171;&nbsp;</a>”;
if($i == $PAGE)

echo “<font color=”#ff3333″>&nbsp;$i&nbsp;</font>”;
if($i != $PAGE)

echo “<a href=”$PHP_SELF?man=$manu&txtballname=$ballname&select=$sel&sortby=$sortby&page=$i” onMouseOver=”status=’Go to Page $i’;return true;” onMouseOut=”status=’ ‘;return true;”>&nbsp;$i&nbsp;</a>”;
if($i == $NUMPAGES && $PAGE != $NUMPAGES)

echo “<a href=”$PHP_SELF?man=$manu&txtballname=$ballname&select=$sel&sortby=$sortby&page=”.($PAGE + 1).”” onMouseOver=”status=’Go to the Next Page’;return true;” onMouseOut=”status=’ ‘;return true;”>&nbsp;&#0187</a>”;
endfor;

Please Help Me….

to post a comment
PHP

1 Comments(s)

Copy linkTweet thisAlerts:
@NogDogMay 01.2006 — 
[code=php]
echo "<a href="$PHP_SELF?man=$manu&txtballname=$ballname&select=$sel&sortby=$sortby&page=".
($PAGE - 1)."" onMouseOver="status='Go to the Previous Page';return true;" onMouseOut="status=' ';return true;">«&nbsp;</a>";
[/code]

[/quote]

I might do that command like this:
[code=php]
$url = urlencode("man=$manu&txtballname=$ballname&select=$sel&sortby=$sortby&page=".($PAGE - 1));
echo "<a href="$PHP_SELF?$url" onMouseOver="status='Go to the Previous Page';return true;" onMouseOut="status=' ';return true;">«&nbsp;</a>";
[/code]
×

Success!

Help @Jaydeep spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.5,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,

tipper: @Samric24,
tipped: article
amount: 1000 SATS,
)...