Using the Events Database to build a songlist for a wedding. |
3/24/2012 12:52:05 PM |
PHPRunner General questions | |
B
broschats author
Here is what I want this project to do.
|
|
B
|
broschats author 3/24/2012 |
This empty reply should be deleted. I dont think I have Delete Privs.. |
![]() |
Sergey Kornilov admin 3/25/2012 |
You can definitely build this using PHPRunner. My best advise is to start building it and on the way you can figure out and ask more specific questions. |
B
|
broschats author 3/26/2012 |
You can definitely build this using PHPRunner. My best advise is to start building it and on the way you can figure out and ask more specific questions. In regards to making certain fields editable - you can select editable on 'Choose fields' screen in PHPRunner.
|
![]() |
Sergey Kornilov admin 3/27/2012 |
The typical suggestion is to print your SQL Query on the page instead of executing it. Once you have the query run it against your database manually using phpMyAdmin or Navicat. This way you can see more detailed error message and fix your query. echo $strSQLInsert;
|
B
|
broschats author 3/27/2012 |
The typical suggestion is to print your SQL Query on the page instead of executing it. Once you have the query run it against your database manually using phpMyAdmin or Navicat. This way you can see more detailed error message and fix your query. To print your query use echo $strSQLInsert;
|
C
|
cgphp 3/27/2012 |
If the ID field is an int, rewrite the query as follow:
|