how can you get/insert data into a url without using get or post.

for example...

example.com/item/Hot-Bodies-Lightning-2-Sport-RTR-1-8th-Buggy

Many thanks

    Oh sorry, perhaps it is done by using a .htaccess and applying rewrite rules like this:

    RewriteEngine On
    RewriteRule Hot-Bodies-L...TR-1-8th-Buggy/?$ item.php [L,NC]

    Note that you would still be passing values as part of the query string with the ?, you would simply mask the url with the rewrite engine.

      A more general rewrite rule would be something like...

      RewriteEngine On
      RewriteRule ^item/(.*)/?$ item.php?item=$1 [NC]
        Write a Reply...