Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why %24 is showing in URL

Tags:

get

Why %24 is showing in URL http://localhost/sdbms/addAttendance.php?%24att_nu_status+1=A&%24att_nu_status+2=A&att_update_button=Updated

And i am unable to get values of att_nu_status :( it the the names of a text boxes generated by for loop on $i as " name="$att_nu_status ">

I wanted to get the updated value $att_candidate_status is showing in the text box for default

like image 234
Ahmad Nabeel Avatar asked Jun 20 '15 18:06

Ahmad Nabeel


People also ask

What do '?' And '#' mean in a URL?

So in your case, the first part of the URL is a request to the server: http://dev.ibiza.jp:3000/facebook/report? advertiser_id=2102. and the second part of the URL could be for Javascript to display a specific view of the page once it has loaded: #/dashboard.

Why URL is not opening?

Most likely problems with opening hyperlinks are connected with either the security restrictions of your Internet browser that doesn't allow opening pop-up windows, or with your Flash player plug-in that prevents you from opening URLs in local Flash files.

What does '#' stand for?

The symbol # is known variously in English-speaking regions as the number sign, hash, or pound sign. The symbol has historically been used for a wide range of purposes including the designation of an ordinal number and as a ligatured abbreviation for pounds avoirdupois – having been derived from the now-rare ℔. #


1 Answers

When you send a request over http some of the special characters are replaced with some other characters this is known as HTTP URL encoding and at the server side it is then again decoded. %24 is the Url encoded character for $ . Check if the request that you are doing is correct as in the url I can see att_nu_status+1=A att_nu_status+2=A.

like image 145
Sarfaraz Khan Avatar answered Sep 22 '22 14:09

Sarfaraz Khan