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
~4K People Reached
About Me

Happy kid

Interests
eating,
Favorite Tags

3 Posted Topics

Member Avatar for JamesCherrill

A simple Calculator. import java.util.Scanner; public class Calc { public static void main(String[] args)throws Exception{ int op = 0; Scanner scan = new Scanner(System.in); double num1, num2, ans; do{ do{ System.out.println("1 for addition. 2 for subtraction. 3 for multiplication. 4 for division"); op = scan.nextInt(); }while(op<1 && op>4); if(op==1) { …

Member Avatar for Alok_5
20
3K
Member Avatar for markbautista19

Here's an example of remove function. <!DOCTYPE html> <html> <head> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ $("p").remove(); }); }); </script> </head> <body> <p>This is a paragraph.</p> <p>This is another paragraph.</p> <button>Remove all p elements</button> </body> </html>

Member Avatar for maltesersssss
0
182
Member Avatar for maltesersssss

I have a drag and drop shopping cart, and I've got a problem in updating the total price once I removed one item. and whenever I remove the item the table is still remain. Here's my addtocart PHP <?php define('INCLUDE_CHECK',1); require "../connect.php"; if(!$_POST['img']) die("There is no such product!"); $img=mysql_real_escape_string(end(explode('/',$_POST['img']))); $row=mysql_fetch_assoc(mysql_query("SELECT …

0
82

The End.