Posts by Raul Tomaz • 3 points
2 posts
-
0
votes0
answers44
viewsQ: How to replace question marks(?) with bars(/)?
How do I replace the parameter question marks in the url with bars ? For example, pass myword/start.php? page=2 for mydomain/home/page/2. A piece of my code: if (isset($_GET['page'])) { $page =…
-
0
votes1
answer35
viewsQ: Change element generated through the event of an already ready element
I have the following HTML code: <div class="header"> <ul class="navigation"> <li><a>Home</a></li> <li><a id="limpar">Limpar</a></li>…