Jump to content

In URL


shage

Recommended Posts

If my url is http://www.yahoo.com/coupon=free/index.php how can i pull out the "free" for a if and else statement, i use htaccess to set the default url to coupon=none but have the options of free and half which indicates shipping prices. Looking to be able to make the shipping status to free on the site if coupon=free and so on.

Link to comment
https://forums.phpfreaks.com/topic/75352-in-url/
Share on other sites

good idea! problem is, if the coupon is ever set in a sub directory..

http://www.yahoo.com/subdir/coupon=free/index.php

 

in which case you could do an in_array:

<?php
$coupon = explode("/",$_SERVER['PHP_SELF']);
if(in_array('coupon=free', $coupon)){
echo "you have a free coupon";
}else{
echo "You pay full price";
}
?>

 

But either option is very unreliable. Mainly because if you're simply going by the coupon to check if it is free or not, you are opening yourself to attack. Someone could simple add 'coupon=free' into the url and get whatever it is for free.

Link to comment
https://forums.phpfreaks.com/topic/75352-in-url/#findComment-381554
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.