如何 - 使用 PHP 实现动态化

发布于 2024-10-01 04:32:39 字数 208 浏览 4 评论 0原文

我有一个针对 php 文件进行操作的表单。一旦表单完成并将数据插入数据库,它希望它显示“Awesome”。 Awesome 正在显示,但位于表单上方。我希望它能够取代表单并显示出很棒的效果。我该怎么做?

谢谢。

if($done )
{
    echo "Awesome";
}
else
{
    echo "Error";
}

I have a form which actions against a php file. Once the form is completed and the data is inserted into the databse, it want it to display "Awesome". Awesome is being displayed but is above the form. I want it to replace the form and display awesome. How do i do that?

Thank You.

if($done )
{
    echo "Awesome";
}
else
{
    echo "Error";
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

总以为 2024-10-08 04:32:39

You can make wonders with the if/else control structure.

无声无音无过去 2024-10-08 04:32:39

想必您有类似的内容:

if (condition) {
    Awesome
} 
The Form

将其更改为

if (condition) {
    Awesome
} else {
    The Form
}

Presumably you have something along the lines of:

if (condition) {
    Awesome
} 
The Form

Change it to

if (condition) {
    Awesome
} else {
    The Form
}
世俗缘 2024-10-08 04:32:39

如果您对以提供所需结果的方式构建代码感到不知所措,那么您应该利用 PHP 的 include() 功能。将表单放入第二个文件中,然后重写结果逻辑:

if($done )
{
    echo "Awesome";
    include("form.php");
}
else
{
    echo "Error";
}

或者无论您希望表单出现在哪里。

If you are overwhelmed with structuring your code in a way that gives the desired result, then you should take advantage of PHPs include() capability. Put your form in a second file, then rewrite your result logic:

if($done )
{
    echo "Awesome";
    include("form.php");
}
else
{
    echo "Error";
}

Or wherever you want the form to appear.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文