使用 php 保存 SlickGrid 中的更改
我设置了一个 SlickGrid,它正在使用 PHP 从我的数据库读取数据,当我尝试将数据保存回我的数据库时,我的问题出现了,我尝试使用 JSON 给我一个数组,然后我可以使用它写回数据库,我看到这个线程解释了这一点:
所以我具有隐藏的表单元素在我的代码中,我使用 JSON 对数据变量进行编码,将其分配给表单上的数据隐藏输入,此表单发布到名为 save_price.php 的页面,问题是当我 print_r 或 var_dump 数据变量时,我得到 null 作为输出,我认为这可能与我如何使用 PHP 将内容添加到数据变量有关,或者我正在做一些明显错误的事情,希望你能看到问题是什么,网上没有大量关于这方面的文档使用 PHP 检索/保存到数据库,所以我在这方面有点陷入困境,这是我的代码:
I have a SlickGrid set up, it is reading data from my database with PHP, my problem is arising when i try to save the data back to my database, I am trying to use JSON to give me an array that I can then use to write back to the database, i have see this thread explaining this:
So I have the hidden form element in my code, and am using JSON to encode the data variable, the assign it to the data hidden input on the form, this form posts to a page called save_price.php, the trouble is when I print_r, or var_dump the data variable, I get null as an output, I think it might be something to do with how I am using PHP to add the content into the data variable, either that or I am doing something really obviously wrong, hopefully you can see what the problem is, there isn't a great deal of documentation online about retrieving/saving to a db with PHP, so I'm kinda stuck banging my head against the wall on this one, here's my code:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,我发现了问题,以防万一有人努力让这一切正常工作,这是工作代码,它从数据库获取数据,然后将更改后的数据发送到另一个页面进行处理,它需要一些改进,一旦我全部实现,这就会发生:
Ok so I found the problem, just incase anyone is struggling to get this all to work, here is the working code, it gets data from a database, then sends the changed data to another page for processing, it nees a little bit of refinements, that will happen once I've got it all implemented: