I'm not sure if this is what you mean, but if you're trying to pass values from a url to a form using php, you could do it like this. After the index.php part of your url add the name/value pairs...
Depending on how your application works, you will likely need more that just server side scripting and databases to make everything work. You may have to learn javascript, flash, java etc. Simple...
If your going to be building a web application, the most commonly used database is MySQL usually used in conjunction with PHP scripting. The next most common is MS SQL usually used in conjunction...
You really need to specify a doc type and fix the validation errors before you can start troubleshooting this type of problem. Without a doc type specified the browser has to guess at what version...
The order in which things are placed in your html is wrong. Your submit button is placed below your input text box in a separate div which is also located below your error message when it appears....
If you want to pass variables from one page to the next, you should use either sessions or cookies. $_POST and $_GET variables are typically only used for processing the form data. Part of the...
This is a problem because in order to submit any form data and do anything with it, you need a form processor running server side. If you loose your connection to the form processor, then there is...
OK, so it took your code, modified it and uploaded to my testing directory here:
http://www.midwestwebtrends.com/testing/centered-menu.html
The only way you are going to center the menu is to...
Can you place the menu inside a div with 100% width and apply the background to the div instead of the ul? Maybe I'm not picturing what you are trying to do.
Also, you may be able to achieve what...
The most common server side language in use is php which is most commonly used with mysql databases.
So for someone who wants to start in web development, I would recommend as a start to become...
You could be exceeding your php memory limit in which case you would either need to increase the memory limit in php.ini or break your csv into smaller chunks and upload several smaller files instead...
Have you looked into jquery jcarousel? If the picture I am getting in my head is right, it should do what you are looking for.
There is a small example of it on this page if you scroll down to the...