473,395 Members | 1,869 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

HTML form failing when using PHP include function

Hi,

I'm trying to create a dynamic form that is accessed from multiple pages. I've created the form and included into one of the main PHP pages using the include() function.

Now, when I run the form, it seems to be ignoring the <form> tag entirely. I want the form to pass the data to another PHP script for validation and dumping into the database. The form will only pass the details back to same page the form is run from.

The form works as it should when I run it's script individually, but not through another page using include().

Any suggestions or help would be great appreciated. Thanks in advance,

Vladimir
Jul 30 '09 #1
10 6197
dlite922
1,584 Expert 1GB
View your source in your browse and see the HTML is what you expect.


Dan
Jul 30 '09 #2
Hi Dan,

Thanks for the speedy reply.

I've had another play with it and decided to strip it down to it's basic form. I added in an identical form into the index.php script. The HTML is echoing out correctly and appears correct in view source.

The form will still not move to another page.

Vladimir
Aug 5 '09 #3
Markus
6,050 Expert 4TB
We're going to have to see the source code, HTML and PHP, if we're going to help you.
Aug 5 '09 #4
Hi Markus,

Thanks for the reply. The code I'm using for the Index.php script is posted below.
Do you also require the output HTML from the view source?

Thanks,

Vladimir

Expand|Select|Wrap|Line Numbers
  1. <?php
  2.  
  3. //Database connection data
  4. include("config/db_config.php");
  5. opendb($dbhost, $dbuser, $dbpass, $dbname);
  6.  
  7. $pagetitle = "Asset Catalogue Front Page";
  8.  
  9. //HTML header information. Assigns variable $pagetitle as the title for the page
  10. include("layout/htmlheader.php");
  11.  
  12.  
  13. //checks for previously run forms/**/
  14. //$delete = $_POST['delete'];
  15. //if(isset($delete))
  16. //  {
  17.     //script to delete the selected entry from the database
  18. //    include("data/delete.php");
  19. //  }
  20.  
  21.  
  22. //Table data for the main output
  23. echo ("<table border=1>");
  24. echo ("<tr name=\"title\">");
  25. echo ("<td>Field</td>");
  26. echo ("<td>Field</td>");
  27. echo ("<td>Field</td>");
  28. echo ("<td>Field</td>");
  29. echo ("<td>Field</td>");
  30. echo ("<td>Field</td>");
  31. echo ("<td>Field</td>");
  32. echo ("<td>Field</td>");
  33. echo ("<td>Field</td>");
  34. echo ("<td>Delete</td>");
  35. echo ("</tr>");
  36.  
  37. //script to pull data from database, assign to variable and echo into table
  38. include("data/select.php");
  39.  
  40. echo ("</table>");
  41.  
  42. //Form for inputting a new record
  43.  
  44. $rows = 1;
  45.  
  46. echo ("</br>");
  47. echo ("<table border =1>");
  48. echo ("<tr>");
  49. echo ("<td>");
  50. echo ("Field");
  51. echo ("</td>");
  52. echo ("<td>");
  53. echo ("Field");
  54. echo ("</td>");
  55. echo ("<td>");
  56. echo ("Field");
  57. echo ("</td>");
  58. echo ("<td>");
  59. echo ("Field");
  60. echo ("</td>");
  61. echo ("<td>");
  62. echo ("Field");
  63. echo ("</td>");
  64. echo ("<td>");
  65. echo ("Field");
  66. echo ("</td>");
  67. echo ("<td>");
  68. echo ("Field");
  69. echo ("</td>");
  70. echo ("<td>");
  71. echo ("Field");
  72. echo ("</td>");
  73. echo ("<td>");
  74. echo ("Field");
  75. echo ("</td>");
  76. echo ("</tr>");
  77.  
  78.  
  79.  
  80. echo ("<form action=\"insert.php\" method=\"POST\" >");
  81. echo ("<input type=\"submit\" name=\"submit\">");
  82. echo ("</form>");
  83.  
  84.  
  85. echo ("</table>");
  86.  
  87. //HTML footer information
  88. include("layout/htmlfooter.php");
  89.  
  90.  
  91.  
  92. ?> 
Aug 5 '09 #5
Markus
6,050 Expert 4TB
Yes please - the HTML source would be useful.

Is the form that is not working, the one located ~line #80?

Also, doing all that echo()ing isn't the best way to achieve that result - have a look at the heredoc syntax.

Mark.
Aug 5 '09 #6
Thanks for telling me about the heredoc syntax. Very useful!
I'll start using that from now on.

Anyhow; It is the form at line 80 that is the problem. I removed all the form fields to test the form.
Also, here is the HTML from view source:



Expand|Select|Wrap|Line Numbers
  1. <html>
  2. <head>
  3. <title>Title</title>
  4. </head>
  5. <body> 
  6. <table border=1>
  7. <tr name="field">
  8. <td>Field</td>
  9. <td>Field</td>
  10. <td>Field</td>
  11. <td>Field</td>
  12. <td>Field</td>
  13. <td>Field</td>
  14. <td>Field</td>
  15. <td>Field</td>
  16. <td>Field</td>
  17. <td>Field</td>
  18. </tr>
  19. <tr name="Field">
  20. <td>123</td>
  21. <td>123</td>
  22. <td>123</td>
  23. <td>123</td>
  24. <td>123</td>
  25. <td>123</td>
  26. <td>123-2009</td>
  27. <td>123</td>
  28. <td>2009-08-05 09:07:27</td>
  29. <td><form method="POST"><input type="hidden" name="id" value="123"><input type="submit" name="delete" value="Delete"></td>
  30. </tr>
  31. </table>
  32.  
  33.  
  34. <table border =1>
  35. <tr>
  36. <td>Field</td>
  37. <td>Field</td>
  38. <td>Field</td>
  39. <td>Field</td>
  40. <td>Field</td>
  41. <td>Field</td>
  42. <td>Field</td>
  43. <td>Field</td>
  44. <td>Field</td>
  45. </tr>
  46. <form action="insert.php" method="POST" ><input type="submit" name="submit"></form>
  47.  
  48. </table>
  49. </body>
  50. </html> 
Aug 5 '09 #7
Markus
6,050 Expert 4TB
Close the form on line 29.

Mark.
Aug 5 '09 #8
Thanks Mark,

Not sure how I missed that. Think it's a case of can't see the forest for the trees.
Thanks a lot.

Vladimir.
Aug 5 '09 #9
Markus
6,050 Expert 4TB
@vladimirblotan
No problem, Vladimir.

Easy mistake :)
Aug 5 '09 #10
dlite922
1,584 Expert 1GB
@dlite922
Yes, My reply was very general, but it was as simple as pasting the HTML source into this: http://validator.w3.org

BAM! problem found in 2 seconds :)



Dan
Aug 5 '09 #11

Sign in to post your reply or Sign up for a free account.

Similar topics

13
by: TinyTim | last post by:
I'm a newbie at ASP & HTML. It seems that when you use server side code and you're going to return a customized HTML form with several fields and labels, you have to do an extensive amount of...
5
by: Alexander Malkis | last post by:
How to recover from failing cin.get(str,n,'\n')? The user pressed "Enter" on cin.get(...).I would like to let him try once more but the system doesn't stop on the next cin.get. Code: ...
9
by: Josh Mayfield | last post by:
Note: There is considerable background detail here, but I do have three questions, which are clearly marked and appear right before the sample code. I have a legitimate need to launch an EXE...
4
by: cjm | last post by:
I have two problems that I suspect will be bread-and-butter problems for the more experienced guys on here, but I'm not the greatest with js. NB: Code snippets at the bottom The first problem...
9
by: Robby Bankston | last post by:
I'm working on some code and am running into brick walls. I'm trying to write out Javascript with Javascript and I've read the clj Meta FAQ and didn't see the answer, read many similar posts (with...
4
by: frogman042 | last post by:
My daughter is playing around trying to learn JavaScript and she wrote a small program that prints out a message in increasing and decreasing font size and color changes. She is using document...
3
by: rdemyan via AccessMonster.com | last post by:
My application is split into a front end and back end. Each user has their own copy of the front end. There are a few forms I only want to be open for one user at a time. So I've implemented the...
10
by: happyse27 | last post by:
Hi All, I got this apache errors(see section A1 and A2 below) when I used a html(see section b below) to activate acctman.pl(see section c below). Section D below is part of the configuration...
5
by: thatcollegeguy | last post by:
Below are my 3php and 2js files. I create a table using ajax/php and then want to change the values in the tables add(+ number for teamid) id's for each specific td in the table. I don't know...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.