PHP 和 Expression Web 入门
我想用这些工具建立一个基本上交互式的网站。我需要制作一个带有子菜单的导航栏。例如:
服务,
然后当鼠标悬停在服务上时,它看起来像:
Services
boo
foo
我熟悉添加 css 样式,我只是不确定子菜单。
在 php 方面,我希望人们从产品中进行选择并写下其数量,然后我希望底部有一个 paypal 按钮,单击该按钮时会重定向到 paypal 并列出订购的产品及其数量(基本上是 paypal 结账页面) )
我想要的另一件事是邮件列表。我希望人们能够提供他们的姓名和电子邮件,并有一个向我发送电子邮件的按钮,以便我可以手动添加他们。
我希望对任何或所有这些主题有深入的了解,也许是教程?我想我可以自己管理网站的其余部分。
谢谢
I want to build a basically interactive website with these tools. I need to make a navagation bar with a submenu. Ex:
Services
then when mouse is over Services it looks like:
Services
boo
foo
I'm familiar with adding css styles, i'm just not sure about sub menus.
On the php side of things, I want people to select from the products and write their quantities, then I'd like a paypal button at the bottom which when clicked redirects to paypal and lists products ordered and their quantities (basically the paypal checkout page)
The other thing I want is a mailing list. I want people to be able to give their name and email and have a button that sends me an email so I can add them manually.
I would appreciate insight on any or all of these topics, maybe tutorials? I think I can manage the rest of the web site on my own.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一次性提出的问题太多了。
下拉导航可以单独使用 HTML+CSS 来完成。您也可以使用 JavaScript 来实现它们。由于 PHP 是服务器端的,因此您只能从中生成 HTML、CSS 或 JS(如果有的话)。
如果您刚刚开始使用 PHP,您最好先阅读 PHP 手册。。至少有名为“语言参考”的章节。还有一本关于 PHP 的免费书籍。
Sitepoint 对于上述任何主题的初学者来说也是一个很好的资源。他们有很多很好的介绍性文章、很好的参考资料和很多教程。
至于 PayPal,请参阅 PayPal 开发者网站 以获取有关如何集成它的信息。
考虑先尝试自己构建页面,然后每当遇到问题并且谷歌搜索没有帮助时,再回来提出单独的问题。
This is too many questions at once.
Dropdown navigations can be done with HTML+CSS alone. You can also realize them with JavaScript. Since PHP is server-side, you would only generate HTML, CSS or JS from that (if at all)
If you are just getting started with PHP, you might best be off first reading the PHP manual.. At least the chapter named Language Reference. There is also this free book on PHP available.
Sitepoint is also a good resource for beginners for any of the above topics. They have many good introductory articles, a good reference and many tutorials.
As for PayPal, consult the PayPal developer site to get information on how to integrate it.
Consider trying to build the page on your own first and then come back to ask individual questions, whenever you run into problems and googling them did not help.