Jump to content

kalyan02

New Members
  • Posts

    8
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

kalyan02's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hi guys, please give your views on PhpSnip.com my new php snippets, php scripts website. This website is completely dedicated for providing php snippets and scripts for free for use and download. The site is already gaining popularity out there ... so if anyone is interested advertising options are also available. Scripts are added daily so it would be great if you subscribed ... rss feeds are also available Code wise...The site was entirely coded by me, with a new framework also developed by me, which enables Search engine friendly url's also...
  2. though this works using the preg,.. but it dosent seem to work with .htaccess
  3. Hello I am stuck at converting [good url which will be typed] 1) example.com/subject/?param=parameters 2) example.com/subject/ 3) example.com/subject i would like to mod-rewrite this to [it will resolve into the below one at server] 1) example.com/index.php?slug=subject&param=parameters 2) example.com/index.php?slug=subject 3) example.com/index.php?slug=subject any help would be appreciated thanks in advance
  4. How do i convert the original url /index.php?slug=services&p=more to this more understandable one /service.php?p=more I tried using this but failed RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^([^/.]+)(?)([^/]+)/?$ index.php?slug=$1 [L] any help would be appreciated
  5. but you expression only adds the '$' sign
  6. i would like to convert $teststring = "SESSION[logged=admin]&(GET[id=23]|VAR[page=admin]|POST[pageid!=23])"; into something like this using regex.. "$_SESSION[logged]==admin and ( $_GET[id]==23 or $page=='admin' or $_POST[pageid]!=23 )"; please let me know how to do this....as i am not able to figure it out any help regarding this is appreciated
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.