Closing Doman Auctions
DNForum - Domain Sales, Domain Forum, Domain Appraisals, Domain Registrars
HomeRegisterMembershipsGetting StartedDomain Tools Domain EbooksSEO Software Domain Resellers Advertise

Go Back   DNForum - Domain Sales, Domain Forum, Domain Appraisals, Domain Registrars > Content Development > Website Development and Design Discussion > Coding/Programming/Languages
Register Search Today's Posts Mark Forums Read

Reply
 
LinkBack Thread Tools Display Modes
Old 04-28-2008, 10:57 PM   #1 (permalink)
Platinum Lifetime Member
 
SGBoise's Avatar
 
Last Online: 09-28-2009 02:11 AM
iTrader: (1)
Join Date: Jan 2008
Posts: 38
DNF$: 60
Location: USA


Can't get regex to match properly

I am trying to match this uri. Also I want 3 to match as id and 45 in pictures45.html as pagenumber.
HTML Code:
/category/3/pictures45.html
With this regex I got to match the category and id.
PHP Code:
preg_match("/^\/category\/(?P<id>\d+)/"$url$matches); 
With this regex I got to match the pagenumber.
PHP Code:
preg_match("/(?P<pagenumber>\d).html/"$url$matches); 
I figured I can combine both the regex and it should work but I can't get it to work.
PHP Code:
preg_match("/^\/category\/(?P<id>\d+)(?P<pagenumber>\d).html/"$url$matches); 
What am I doing wrong?
Thanks guys
__________________
Video Script - The ultimate media site script
AutoVideoScript com - Run your own youtube sharing site
SGBoise is offline   Reply With Quote
Sponsored Ads
Old 05-02-2008, 01:11 AM   #2 (permalink)
Platinum Lifetime Member
 
xrvel's Avatar
 
Last Online: 11-13-2009 02:54 AM
iTrader: (4)
Join Date: Nov 2007
Posts: 65
DNF$: 330
Location: Indonesia
Country:


Try this
PHP Code:
<?php
$url 
'/category/3/pictures45.html';

preg_match('/\/category\/([0-9]+)\/([a-z]+)([0-9]+)/i'$url$match);
echo(
'<pre>' print_r($matchtrue) . '</pre>');

$id $match[1];
$pagenumber $match[3];

echo (
'<p> ID = ' $id '</p>');
echo (
'<p> Page number = ' $pagenumber '</p>');
?>
__________________
My offer is valid for 72 hours

Xrvel : "No thanks. Continue to checkout..."
xrvel is offline   Reply With Quote
Old 05-02-2008, 11:07 AM   #3 (permalink)
Platinum Lifetime Member
 
SGBoise's Avatar
 
Last Online: 09-28-2009 02:11 AM
iTrader: (1)
Join Date: Jan 2008
Posts: 38
DNF$: 60
Location: USA


You are awesome. Thanks.
__________________
Video Script - The ultimate media site script
AutoVideoScript com - Run your own youtube sharing site
SGBoise is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -5. The time now is 09:16 PM.
Copyright @2001-2009 DNForum.com