duanhan9334 2016-11-20 14:14
浏览 68

如何为我网站上的每个产品制作不同的URL?

So I'm working on an affiliate website and I'm trying to figure out how to get a different URL for every product on my website.

So let's say i've got a page called www.mywebsite.com/products with all the different products on there that I get from my database. When I click on one of the products it's supposed to go to the URL www.mywebsite.com/products/testproduct. If I click on a different product it's supposed to go to www.mywebsite.com/products/testproduct 2 etc... How do I get a URL for every product on my product page? I've been searching for a long time and I'm sure it's an easy solution cause every webshop has this function, but I just can't really explain what I want to Google, so that's why I'm asking here.

Is there like a term for this that I can look up? Any help would be appreciated.

Thanks

  • 写回答

1条回答 默认 最新

  • du4373 2016-11-20 14:19
    关注

    You could make the website with a GET element.

    So you list all your items on the page product/, and when you click on something it will link to testproduct/?id=[itemid]

    Then you can use php

    $_GET['id'];
    

    and with that you can request all details from the database and print them on the page.

    No clue if that helped but that is what I would do.

    EDIT: for security reasons (SQL injections) use:

    filter_var($_GET["id"], FILTER_SANITIZE_SPECIAL_CHARS);
    
    评论

报告相同问题?

悬赏问题

  • ¥15 关于#matlab#的问题:在模糊控制器中选出线路信息,在simulink中根据线路信息生成速度时间目标曲线(初速度为20m/s,15秒后减为0的速度时间图像)我想问线路信息是什么
  • ¥15 banner广告展示设置多少时间不怎么会消耗用户价值
  • ¥16 mybatis的代理对象无法通过@Autowired装填
  • ¥15 可见光定位matlab仿真
  • ¥15 arduino 四自由度机械臂
  • ¥15 wordpress 产品图片 GIF 没法显示
  • ¥15 求三国群英传pl国战时间的修改方法
  • ¥15 matlab代码代写,需写出详细代码,代价私
  • ¥15 ROS系统搭建请教(跨境电商用途)
  • ¥15 AIC3204的示例代码有吗,想用AIC3204测量血氧,找不到相关的代码。