Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~12.5K People Reached
Favorite Forums
Favorite Tags
Member Avatar for Scooby08

I have a small problem I'm thinking.. I have a form that lists items and next to each item there is a input text field for the user to choose the quantity of each item they wish to order.. When the form is run through it spits out this array: …

Member Avatar for jerickduguran
0
12K
Member Avatar for Scooby08

[b]Basically...[/b] I'm collecting xml data and storing it into a database. Then I'm calling that info from the database using a jquery .ajax function to load and display it on the page.. It all works fine.. [b]The problem...[/b] The xml file consists of many sports leagues with odds for each …

0
60
Member Avatar for Scooby08

I was wondering how to store this date into the database: Friday, August 28, 2015 and this time: 8:00PM I have one field that collects the date and another for the time.. Im looking to store them in this format, 0000-00-00 00:00:00.. Is there some way to turn this date …

Member Avatar for buddylee17
0
104
Member Avatar for Scooby08

I am currently working on an invoice type of database and was wondering the proper way to set up the items table.. As of now I have all my items in one table and am using the auto_increment id of each item for that specific item's id.. Everything works fine, …

Member Avatar for unixmonkey
0
100
Member Avatar for Scooby08

Is there way to tell if a radio button is checked by not using the value at all?? And by not using any javascript either.. Here is what Im using: [code] <input type="radio" name="item_id" value="1" /> <input type="radio" name="item_id" value="1" /> [/code] Now I need the name and value to …

Member Avatar for mackone
0
110
Member Avatar for Scooby08

Would anybody happen to know which of these ways is the better way to run your queries?? Would it be better to have all your SELECT queries before the actual <html> code starts, or would it be just fine throughout the page in the <body> tags?? Is one slower than …

Member Avatar for Shanti C
0
113
Member Avatar for Scooby08

Im just curious as to how one would approach adding up a column that is dynamically built from the database.. Each loop passes a price and I can't figure out how to collect each price to get the total price..

Member Avatar for buddylee17
0
95
Member Avatar for Scooby08

Would anybody happen to know if it's possible to hide the value of a radio button unless it is checked, and then when it is checked display that value, and then after moving on, that value stays active, and the user can fill out the rest of the form and …

Member Avatar for Scooby08
0
101
Member Avatar for Scooby08

I have an invoice type of system and am having troubles trying to update an item.. I have 3 tables that deal with the orders.. Here they are: [code] CREATE TABLE `dw_orders` ( `order_id` INTEGER unsigned NOT NULL auto_increment, `customer_id` INTEGER unsigned NOT NULL, `order_date` DATETIME NOT NULL DEFAULT '0000-00-00 …

Member Avatar for mcd
0
123
Member Avatar for Scooby08

I'm trying to figure out a way to get this if statement to work.. [code] $array = $_POST['field']; foreach ($array as $key => $value) { if ($value does not exist in database) { $query = "INSERT INTO..."; elseif ($value >= 1) { $query = "UPDATE... "; } else { $query …

Member Avatar for Shanti C
0
110