Display posts without using GET in PHP -


how 1 make view contain without using variable in php

i trying display post/id this

www.domain.com/view/1234 

instead of

www.domain.com/view.php?id=1234 

you need rewrite url htaccess , intercept somehow using php , loading file somewhere.

  1. rewrite url mod_rewrite (i.e.: domain.com/23234234/0 domain.com?id=23234234&nr=0)
  2. make call database requesting post id 23234234
  3. show user

is looking for?

(based on previous answer)


Comments

Popular posts from this blog

c# - How Configure Devart dotConnect for SQLite Code First? -

java - Copying object fields -

c++ - Clear the memory after returning a vector in a function -