Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #4K
~5K People Reached
Favorite Forums

8 Posted Topics

Member Avatar for furlanut

is there any possibility that in your second form, the name of the input is 'id' but not 'ID'?

Member Avatar for furlanut
0
151
Member Avatar for ash55

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.

Member Avatar for Member #908245
0
364
Member Avatar for basketmen

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 …

Member Avatar for adumpaul
0
102
Member Avatar for ComeAsUR

Try this [CODE]<iframe src="www.google.com" name="main" allowtransparency="true" width="820" height="550" frameborder="0" id="if_main"></iframe>[/CODE]

Member Avatar for craftingimage
0
118
Member Avatar for craign924

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 ;)

Member Avatar for shadowcrawler
0
165
Member Avatar for solid28
Member Avatar for shadowcrawler

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.

Member Avatar for Dandello
0
2K
Member Avatar for Birdmanskii

you may try to add [CODE]<div style="clear:both"></div>[/CODE] after [CODE]<div id="review"></div>[/CODE]

Member Avatar for shibin vadayatt
0
1K

The End.