PHP 动态改变 html

发布于 2024-11-16 18:43:18 字数 681 浏览 0 评论 0原文

我有以下内容:产品名称以及表单和提交按钮之后。我需要在表单中输入一些内容,然后单击“提交”后我希望更改产品名称。

while ( ! feof( $fp ) ) {
   $line = fgets( $fp, 1024 );
   list($url, $path) = explode(',', $line);
   echo "<div style='width:420px;height:30px;background-color:#2cb823;'>$url</div>";
   echo "<div style='width:420px;height:30px;background-color:#2875DE;'>$path</div>";
   echo "<div style='width:420px;height:30px;background-color:yellow;'>$default<input type='text'></input>
   <button type='button'>Name product</button></div>";
   echo "<br/>";
}

正如您所看到的,变量 $default="Product" 是我想通过按钮更改的内容(通过提交表单)。

I have the following: Product name and right after form and submit button. I need to type something in the forms and after clicking submit I want the product name to change.

while ( ! feof( $fp ) ) {
   $line = fgets( $fp, 1024 );
   list($url, $path) = explode(',', $line);
   echo "<div style='width:420px;height:30px;background-color:#2cb823;'>$url</div>";
   echo "<div style='width:420px;height:30px;background-color:#2875DE;'>$path</div>";
   echo "<div style='width:420px;height:30px;background-color:yellow;'>$default<input type='text'></input>
   <button type='button'>Name product</button></div>";
   echo "<br/>";
}

As you see the variable $default="Product" is what I want to change via button(by submitting the form).

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

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

发布评论

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

评论(2

倒数 2024-11-23 18:43:18

您无法直接通过 PHP 更改此设置。
PHP 是服务器端代码。在您(客户端)获取代码之前,所有这些都已在服务器上进行了处理。

如果你想做类似的事情,你就必须使用 javascript。如果您希望在服务器上更新,请使用 Ajax。

You can't change this via PHP directly.
PHP is server-sided code. All of it is already processed at the server before you, the client, gets the code.

If you want to do something like that, you're going to have to use javascript. If you want this to update at the server, then use Ajax.

想挽留 2024-11-23 18:43:18

这是与 javascript 相关的,而不是与 PHP 相关的。

只需将 onClick 事件附加到按钮即可

This is javascript related not PHP.

Just attach an event onClick to the button

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