Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
3
Posts with Upvotes
3
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
~10.8K People Reached
Favorite Tags
c++ x 10
php x 10
c x 2
java x 2
Member Avatar for Jfunch

The problem I am trying to solve is Write a program using fork() to compute average of N numbers. The parent process forks a child process that takes input from the user, adds all the numbers and returns the sum and the count of numbers to the parent process that …

Member Avatar for Kyle_4
0
3K
Member Avatar for Jfunch

I was hoping to find someone with shopping cart and paypal experience. I'm learning how to integrate paypal with my website, but I'm having touble getting logging in my mock buyer paypal account from the paypal checkout page. My payment button on my site seems to work fine and takes …

Member Avatar for LastMitch
0
892
Member Avatar for Jfunch

I have cart that sends its information to paypal with the hidden html inputs. My problem is when the user finishes the payment in paypal my script the the paypal return sends its return url is not processing the information. When the user clicks pay in paypal it does redirect …

Member Avatar for LastMitch
1
412
Member Avatar for Jfunch

I programming a ecommerce website where users can add products to a cart and then use a paypal checkout button to process the order. I've been trying to figure out how I would let the user add stuff to a cart and not force them to login to their account …

Member Avatar for veedeoo
0
128
Member Avatar for Jfunch

What I have right now is the category name is put up in the url like so subcategory.php?id=Drivers that way i can use that get variable to query the database and list all the entried from that database on the page. What I need to do though is limit how …

Member Avatar for LethargicCoder
0
198
Member Avatar for Jfunch

What I need to do is search brand names, find all the brands that start with the letters A-E and put those under a header on my webpage. Then search F-O and then P-Z and do the same thing. How would I go about querying the database to get the …

Member Avatar for |-|x
0
94
Member Avatar for Jfunch

This is my query SELECT DISTINCT brand, category FROM product WHERE subcategory = '$subcategory' My problem is that i want the distinct to work on both brand and category, but it is only working on brand. How could i fix this?

Member Avatar for smantscheff
0
102
Member Avatar for Jfunch

I need help displaying some products from a mysql database in a 3x4 table or what ever size i choose to do. An example of how I want to display it is http://www.golfcircuit.com/Golf-Drivers/13__.html. Right now I just have it displaying in a n x 1 format. Like so http://webdev.cs.kent.edu/~jfunchio/wp2/HW2/index.php. I …

Member Avatar for pritaeas
0
2K
Member Avatar for Jfunch

I'm trying to do an insert into my order_item table, but I'm getting this error. Can someone help with why this is happening. Thank you. My sql code to create the tables is below. [CODE] drop table IF EXISTS order_item, orders, customer, product; CREATE TABLE customer ( id INT(10) NOT …

Member Avatar for smantscheff
0
163
Member Avatar for Jfunch

I'm trying to make a prepared statement to query a customer database and set their user session variables. When I try to run it I get this error. Fatal error: Call to a member function bind_param() on a non-object in C:\wamp\www\HW2\user_login.php on line 57 Can someone help me with why …

Member Avatar for veedeoo
0
147
Member Avatar for Jfunch

I'm trying to convert my code for querying and accessing user login info and putting into session varibles to using a prepared statement to do the same thing, but I can't figure it out. Original: [CODE] $query = "SELECT id FROM customer WHERE username='$username' AND password='$password' LIMIT 1"; $result = …

Member Avatar for hag++
0
139
Member Avatar for Jfunch

I have this code that creates gets the data from a sqlite3 database and prints it out in a table with checkboxes next to each row to check to delete that row. After deleting a row I want to update the data base so that the id of the rows …

Member Avatar for diafol
0
159
Member Avatar for Jfunch

I have this code which takes data from an sqlite3 database and prints out the all the data from the data into an html table. Like so: 1 jake asdlfj lakdsjfl lkajsdgklj kafdlgjkalg 2011-12-04 2 Bill asdfohdf oijasdofij qoasjgfoiq oaisjdfae 2011-12-04 3 Tim lakdsfgaie aogoie ;lasjdlo asdfgae 2011-12-04 4 hello …

Member Avatar for simplypixie
0
175
Member Avatar for Jfunch

The problem I am trying to solve is Write a program using fork() to compute average of N numbers. The parent process forks a child process that takes input from the user, adds all the numbers and returns the sum and the count of numbers to the parent process that …

Member Avatar for JamesCherrill
0
2K
Member Avatar for Jfunch

Hi i need to create a form in a .html file myteamform.html, then take the data entered into the form and process it in a .php file "roster.php" which takes the data and adds it another.html page team_roster.html. I have my form done, my problem is how do you add …

Member Avatar for decade
0
432
Member Avatar for Jfunch

I have a program that uses two threads, one that adds some numbers and the other takes the sum and finds the average. I used a blocking queue to pass the sum to the other string. I have no problem queue.put() to put the total in the queue and then …

Member Avatar for JamesCherrill
0
218
Member Avatar for Jfunch

The problem I need to solve is Write a program using fork() to compute average of N numbers. The parent process forks a child process that takes input from the user, adds all the numbers and returns the sum and the count of numbers to the parent process that divides …

0
71
Member Avatar for Jfunch

The problem I am trying to solve is Write a program using fork() to compute average of N numbers. The parent process forks a child process that takes input from the user, adds all the numbers and returns the sum and the count of numbers to the parent process that …

0
62
Member Avatar for Jfunch

I'm suppose to write a program that asks the user to enters numbers which will be stored in a dynamic array. Then once they enter their first set of numbers they are asked whether they would like to enter another number or remove a number from their list. You can …

Member Avatar for tetron
0
143
Member Avatar for Jfunch

I'm suppose to write a program that asks the user to enters numbers which will be stored in a dynamic array. Then once they enter their first set of numbers they are asked whether they would like to enter another number or remove a number from their list. You can …

0
58
Member Avatar for Jfunch

Hi i'm writing this program where the user chooses whether to print out a square, a forward triangle, and a backwards triangle using the "*" character. I got the square and the backwards triangle to work and the forward triangle, but i cant figure out how to do the back …

Member Avatar for mrnutty
0
451
Member Avatar for Jfunch

I need to write a program that converts a date entered by the user in numeral format such as 1/25 or 10/3 to the corresponding alphabetical format such as January 25. This program requires that i use Exception-Handling in case the user enters and invalid month or day such as …

Member Avatar for Ancient Dragon
0
98
Member Avatar for Jfunch

I keep getting a Segmentation fault error when i run my program, i read that this is an error with memory or somthing, i was hoping someone could point out where the problem in my program is. My code is below. [CODE] #include <iostream> #include <vector> using namespace std; class …

Member Avatar for pecet
0
244
Member Avatar for Jfunch

i keep getting these errors with my program and i was wondering if anyone can help. /tmp/cc2Rxau2.o: In function `main': prac.cpp:(.text+0x101): undefined reference to `Barcode::Barcode()' collect2: ld returned 1 exit status Code: #include <iostream> using namespace std; class Barcode { public: Barcode(int zipcode); Barcode(char bar); Barcode(); int convert(int num); private: …

Member Avatar for jonsca
1
89