-
Replied To a Post in getting error in my program
The first parameter of ArrayList.set() is an integer. Client is clearly not an integer and so you are getting that error. -
Began Watching DELETE records from multiple MySQL tables
Good day! I am currently working on this code. My problem is that the delete option don't function. It gets the error "There has been a fatal error." as stated … -
Replied To a Post in DELETE records from multiple MySQL tables
Seeing as your select statement doesn't include a WHERE statement I'm going to assume the query is returning more than one row. You are then looping through all returned rows … -
Began Watching display inline is not working in ul tag
<div class="links1"> <ul style="float:left; position:absolute; top:115px; right:200px; display:inline;"> <li><a href="#">Warranty & Support</a></li> <li><a href="#">Shipping Info</a></li> <li><a href="#">Privacy Policy</a></li> <li><a href="#">About Us</a></li> <li><a href="#">Contact Us</a></li> </ul> </div> I want these links … -
Replied To a Post in display inline is not working in ul tag
You need to set display: inline-block for the li elements of the ul. At the moment you have only told the ul to display inline with other sibling elements, which … -
Began Watching Drop down menu fails on most mobile devices
Hi, I was informed the only way to get [this](http://cssdeck.com/labs/navigation-dropdown-with-flip-effect) drop down to work on Andriod, WP & to a larger extent iPhone is though JS, I was hoping someone … -
Replied To a Post in Drop down menu fails on most mobile devices
The basic problem is that it uses :hover to determine when to display the menu. Touch devices have no equivalent to :hover as it is meaningless. They only respond to … -
Replied To a Post in Show the second block of check boxes if first block of checkboxes completed
Hmmm, a down and no comment. Wish whoever did those could at least explain themselves. Anyway, I'm not sure what trouble you are having now. I'll see if I can … -
Began Watching Php database
dear friends, I am developing Online registration form... I want to display data record vice not row vice...my code is below <?php include "conn1.php"; $sql = "SELECT * FROM reg"; … -
Replied To a Post in Php database
I don't understand what you mean. What is data record vice and row vice? What data from the table do you want to display on the screen? -
Began Watching Show the second block of check boxes if first block of checkboxes completed
i want to Show the second block of check boxes if first block of checkboxes completed. i.e; first block has 2 or 3 check box if all were selected then … -
Replied To a Post in Show the second block of check boxes if first block of checkboxes completed
Add a jquery function to each checkbox in the first group, either as a click or change function, and from that click/change call a method that examines each checkbox and … -
Replied To a Post in BC30205: End of statement expected.
And that, of course, is exactly what I meant. "db\\" <- TWO back slashes!! -
Began Watching BC30205: End of statement expected.
hello please find and try to help me about this problem> at this file ( Global.asax ) and you can check my website: http://www.almusairiey.com Compiler Error Message: BC30205: End of … -
Replied To a Post in BC30205: End of statement expected.
That \ is the .Net escape character. Say you wanted to split a string on the double quote you would write it as split("\"") otherwise the second quote gets detected … -
Began Watching edit dynamic input field
I just need help regarding my problem in editing an imploded input text from the database: I have a dynamic input text which means that you can add more input … -
Replied To a Post in edit dynamic input field
I saw this straight away: $children = $_POST['children']; $cge = $_POST['age']; $children = implode(',',$children); $age = implode(',',$age); Line 4 should refer to $cge as the $age variable in the implode … -
Began Watching Multiple where condition
Hi, Im trying to extract data from sql server where conditions are multiple and variying I have a datagridview with 2 columns ID and Name I need to create Select … -
Replied To a Post in Multiple where condition
you can either do multiple conditions in the WHERE statement: `WHERE id = x OR id = y etc` or you can use the in statement if you would rather … -
Began Watching favicon xampp logo
Hello, In my index.php file front page at first, it has a xampp logo - then in order to erase it I have to place this code: <!-- Favicons --> … -
Replied To a Post in favicon xampp logo
You could just rename or delete the favicon. Or do you not have access to it? -
Began Watching How to draw 3 Tier Architecture Diagram for my website?
Hi, Thanks for viewing my post. I have got a project about developing a website for different user and I am required to draw architecture diagram. Can anyone tell me … -
Replied To a Post in How to draw 3 Tier Architecture Diagram for my website?
There's no specified way to do that (as far as I know). Any diagram that indicates the various components and where they sit in relation to each other should be … -
Began Watching PHP problem
My code on website is not validate on W3 Validator. <?xml version="1.0" encoding="ISO-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR...nsitional.dtd"> <html> <head> <title> Contact </title> <meta name="description" content="Inzenjerski portal,baza … -
Replied To a Post in PHP problem
And it tells you exactly why it failed. Add the xlmns to the html element and adjust the DOCTYPE as it suggests. You did read the output from the validator … -
Began Watching Primary index as sparse index?
I need to know how the primary index is classified as a sparse index? The sparse index as described by some aticles and books has index entries for only some … -
Replied To a Post in Primary index as sparse index?
A primary index cannot be a sparse index as primary indexes cannot hold NULL values. You can use a sparse column as part of a clustered key though. Is that … -
Began Watching <td> width
Hi its me again =), See the code below: <style> td{ width:150px; } </style> . . . echo'<table> <tr> <td>TITLE</td> </tr> </table> . . . Im trying to style the … -
Replied To a Post in <td> width
Both of those should work. Is your actual table different from this one? Because if you only have one row and one cell and no other styling how are you … -
Began Watching tell me what is wrong with this code
I have write a program to read 6 numbers and find the average of all odd numbers. here is my code Scanner get = new Scanner (System.in); double average = … -
Replied To a Post in tell me what is wrong with this code
Firstly, i is just an integer that you use to loop through with. It isn't the collection of numbers that the user entered. So checking `if(i % 2 == 1)` … -
Began Watching Table width
Hello, I am trying to control the table width for the form text and input box. I can't even control the main table width with this code: <table border="1" style="width: … -
Replied To a Post in Table width
The default width of your inputs is the problem. Specify a shorter width for all of your textboxes and you'll be able to make the table narrower. I think the … -
Began Watching adding/removing a class upon form submission
Hello guys, I wonder if you could kindly explain this to me. Basically, I've got a form and a thank you message above it, here they are: <asp:Content ID="Content5" ContentPlaceHolderID="contentPlaceholder" … -
Replied To a Post in adding/removing a class upon form submission
You could use AJAX and when the response comes back use jQuery to alter the CSS on the form and the message. Unless you have some extra code somewhere, your … -
Replied To a Post in Chrome won't play as other browsers?
A 404 is fairly straightforward. I couldn't access that javascript file either but can reach others used by www.rovespier.com located in the same directory. I would conclude that jquery.dropdown.js doesn't … -
Replied To a Post in uploading php forms and database
Access denied for user at least means you are connecting to the server. You're getting denied due to either the user name or the password. Have you tried just `$username="mydbphp";` … -
Began Watching uploading php forms and database
Dear firnds, I want to upload my php Forms and database...I am using godaddy.com i have my login and pwd.... I uploaded Survey project Php files and database.please,check my conn.php … -
Replied To a Post in uploading php forms and database
I'm assuming you removed the password for this post and it is being included in the actual config. The only advice I can give is to double check what you … -
Began Watching Chrome won't play as other browsers?
I have a problem with Chrome. Although my site works fine 100% on other browsers (safari, explorer, firefox) it wont play on Chrome. I think that the problem is that … -
Replied To a Post in Chrome won't play as other browsers?
What do you mean "won't play"? Is the site appearing without any styling? I'm pretty sure chrome reads CSS and javascript locations correctly. -
Began Watching sumbit button
In code there is javascript part where test the user input if negative number it will disable sumbit button. Now the problem is that I cant get to reset to … -
Replied To a Post in sumbit button
You have a return statement before other code you want to run. Code after a return statement gets skipped because the return state redirected back to wherever it was called … -
Replied To a Post in Navigation height
Sure, I added: `line-height: 20px; // or whatever you need` to the <ul> element. -
Began Watching HTML/CSS Positioning Not right
  <!DOCTYPE html> <!-- grocery.html A document for computeCost.js --> <html lang = "en"> <head> <title>grocery.html</title> <meta charset = "utf-8" /> <style type = "text/css"> label,input {display: … -
Replied To a Post in HTML/CSS Positioning Not right
You've given your labels a width of 200px which is pushing everything over to the right. You should get used to using the developer tools in your browser (if you … -
Began Watching calendar approach vb net
Dear forum i would like some advices regarding a calendar in vb net and mysql(wamp).. So my question is to suggest some approaches to achieve this result. I have thought … -
Replied To a Post in calendar approach vb net
You haven't mentioned what result you are after... Do you just need a calendar control? Because they exist in .Net. -
Began Watching how can i make a program by using like this(2*5/6+3-8*3/2)to get the sum of
how can i make a program by using like this(2*5/6+3-8*3/2)to get the sum of them? -
Replied To a Post in how can i make a program by using like this(2*5/6+3-8*3/2)to get the sum of
Do you mean you need a program that can accept inputs in the style of your example and correctly determine the value? I would separate the string on the mathmatical …
The End.