Click here to Skip to main content
15,903,012 members
Home / Discussions / Web Development
   

Web Development

 
QuestionGetting records from multiple tables Pin
Valecia_cho18-Feb-18 8:56
Valecia_cho18-Feb-18 8:56 
AnswerRe: Getting records from multiple tables Pin
W Balboos, GHB23-Feb-18 3:44
W Balboos, GHB23-Feb-18 3:44 
QuestionCreate a website to teach Pin
RV202012-Feb-18 23:56
RV202012-Feb-18 23:56 
AnswerRe: Create a website to teach Pin
Richard MacCutchan13-Feb-18 1:58
mveRichard MacCutchan13-Feb-18 1:58 
GeneralRe: Create a website to teach Pin
RV202013-Feb-18 2:07
RV202013-Feb-18 2:07 
GeneralRe: Create a website to teach Pin
RV202013-Feb-18 2:07
RV202013-Feb-18 2:07 
AnswerRe: Create a website to teach Pin
Kate Holloway18-Feb-18 0:14
Kate Holloway18-Feb-18 0:14 
QuestionURL rewriting with pure php and .htaccess Pin
partapsingh8-Feb-18 20:41
partapsingh8-Feb-18 20:41 
I am using php and mysql for one of my project. I have two pages as:
index.php 
and packages.php

I am sending id and packagename from index.php using get method and package.php is retriving it and displaying the corresponding values.

Here is the way I am receiving the value in package.php

PHP
$getpackage = $_GET["package"];

list($packageid, $packagename) = explode(":",$getpackage);
$url = strtolower(str_replace(' ', '-', $packageid)) . '-' . $packagename;


and here is my .htaccess file code


XML
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^.]+)$ $1.php [NC]
RewriteRule ^package/([A-Za-z0-9_]+)/?$ package?$getpackage=$1 [QSA]


and here is the browser url output


<a href="http://localhost/abc/package?package=+1%3AHimachal+Main+"></a>[<a 
href="http://localhost/abc/package?package=+1%3AHimachal+Main+" target="_blank" title="New Window">^</a>]



My requirement is abc/package/1/Himachal Main or ../1/Himachal-Main

I have tried many ways but i m not able to accomplish this.

Leads will be highly appreciated
AnswerRe: URL rewriting with pure php and .htaccess Pin
luplup9-Feb-18 13:57
luplup9-Feb-18 13:57 
QuestionScroll Down!! Pin
User 98970747-Feb-18 9:38
User 98970747-Feb-18 9:38 
AnswerRe: Scroll Down!! Pin
Richard Deeming7-Feb-18 11:20
mveRichard Deeming7-Feb-18 11:20 
GeneralRe: Scroll Down!! Pin
User 98970748-Feb-18 0:26
User 98970748-Feb-18 0:26 
GeneralRe: Scroll Down!! Pin
Richard Deeming8-Feb-18 0:53
mveRichard Deeming8-Feb-18 0:53 
GeneralRe: Scroll Down!! Pin
User 98970748-Feb-18 1:04
User 98970748-Feb-18 1:04 
GeneralRe: Scroll Down!! Pin
Richard Deeming8-Feb-18 1:08
mveRichard Deeming8-Feb-18 1:08 
GeneralRe: Scroll Down!! Pin
User 98970748-Feb-18 1:11
User 98970748-Feb-18 1:11 
GeneralRe: Scroll Down!! Pin
Richard Deeming8-Feb-18 1:24
mveRichard Deeming8-Feb-18 1:24 
GeneralRe: Scroll Down!! Pin
User 98970748-Feb-18 1:27
User 98970748-Feb-18 1:27 
GeneralRe: Scroll Down!! Pin
Richard Deeming8-Feb-18 1:41
mveRichard Deeming8-Feb-18 1:41 
GeneralRe: Scroll Down!! Pin
User 98970748-Feb-18 1:43
User 98970748-Feb-18 1:43 
GeneralRe: Scroll Down!! Pin
Richard Deeming8-Feb-18 1:45
mveRichard Deeming8-Feb-18 1:45 
GeneralRe: Scroll Down!! Pin
User 98970748-Feb-18 1:48
User 98970748-Feb-18 1:48 
GeneralRe: Scroll Down!! Pin
Richard Deeming8-Feb-18 2:01
mveRichard Deeming8-Feb-18 2:01 
GeneralRe: Scroll Down!! Pin
User 98970748-Feb-18 2:06
User 98970748-Feb-18 2:06 
GeneralRe: Scroll Down!! Pin
Richard Deeming8-Feb-18 2:31
mveRichard Deeming8-Feb-18 2:31 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.