- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
8 Posted Topics
is there any possibility that in your second form, the name of the input is 'id' but not 'ID'?
In this line: $result = mysql_query("SELECT contact_financial_invoiceamount-contact_financial_payment AS outstanding FROM contacts WHERE contact_id = ".$_GET['id'].""); I think you should write: $result = mysql_query("SELECT contact_financial_invoiceamount-contact_financial_payment AS outstanding FROM contacts WHERE contact_id = '{$_GET['id']}'"); instead. Cause generally you are not allowed to use two double quotation marks together.
I think you need to save users' choice in the database. And when you show it, you make the PHP or whatever you use read the data from database. If the value of the option is equal to the value in database, then [CODE]<option value="xxx" selected="selected">xxx</option>[/CODE]. Otherwise, just write [CODE]<option …
Try this [CODE]<iframe src="www.google.com" name="main" allowtransparency="true" width="820" height="550" frameborder="0" id="if_main"></iframe>[/CODE]
The query sentense shoud be like [CODE]$result = mysql_query("SELECT products.products_id AS id, products_description.products_name AS name, products.products_quantity AS quantity, products.products_weight AS weight, products.products_price AS price FROM products, products_description LEFT JOIN products.products_id=products_description.products_id ") [/CODE] It should be the table name after "FROM", not the column name ;)
Have you tried <tr valign="top"> ?
Hi there, is there any way to adjust the width of outer div automatically? e.g.[CODE]<div class="outer"><div class="inner">test</div></div>[/CODE] What I want is that the width of outer could be set automatically according to the content of inner so that I do not have to set the value by myself.
you may try to add [CODE]<div style="clear:both"></div>[/CODE] after [CODE]<div id="review"></div>[/CODE]
The End.
shadowcrawler