开发者

Creating product pages using PHP [closed]

开发者 https://www.devze.com 2023-03-30 14:21 出处:网络
开发者_Go百科 It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical andcannot be reasonably answered in its current form.
开发者_Go百科 It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 11 years ago.

I have a product gallery page, with numerous products.

I wish to create a page for each product with product specific comment box(maybe facebook). I can write a new page for each product and hyperlink them. But this will need a new page for every product added.

I think I can use php to dynamically create a page for every product out in a layout previously defined.

Can anybody help with a basic example??


Here's the most basic of examples:

<?php
echo "Page for product #{$_GET['id']}";

Try accessing the PHP page with page_name.php?id=1234.

0

精彩评论

暂无评论...
验证码 换一张
取 消