-
Began Watching Inconsistent jquery function
I need a secondary review of the following script to help identify an issue of inconsistency with a function. The code allows me to perform a live search on a … -
Replied To a Post in Inconsistent jquery function
Change to this and then run it #faq EM { /*display: none;*/ } You can see what it is doing then - I'm just not clear on its intended behaviour. -
Replied To a Post in Getting MVC project out of GitHub
Are you learning through books or videos? -
Began Watching SQLiteDataReader InvalidCastException
I'm reading data from SQLite database table. If the SQLiteDataReader encounters a negative double an InvalidCastException is thrown. Here is my code. public void DBToArray() { string stm = "SELECT … -
Began Watching PHP echo class in img
Hu Guys, Sorry, my question might sound silly but how can I embbed a class inside echo "<tr><td><img src='data:image/jpeg;base64," . base64_encode($row['product_img']) . "' alt='' /></td></tr>"; I tried echo '<div class="img"><tr><td><img … -
Replied To a Post in PHP echo class in img
Your tags are malformed - put the close div at the end. -
Replied To a Post in how to hide url using seo
Dude that's not even a proper sentenace. We cannot help if you cannot express your question in an understandable fashion! -
Gave Reputation to RyanKempe in Marketplace activity level
hey im not spamming. I'm real and have an oppinion thank you very much. -
Began Watching Home network. Wireless broadband
Having an issue with wifi in my house. Was using standard multimodem that came with my broadband subscription from the provider but we were suffering in some parts of the … -
Replied To a Post in Home network. Wireless broadband
Cables are so much better and you can even go IP over power. -
Began Watching Displaying left and right arrows
Hi , I am displaying description from table dynamically. For that I need Left and right arrows, How to do that? I need with some examples in a simple way. -
Replied To a Post in Displaying left and right arrows
<img src="/arrowimage.gif" /> -
Began Watching How to increment dynamically href id using for loop
I am facing problem for incrementing href id. for example href="#tab1", i want to increment n=6. It will increment like <a href="#tab1" data-toggle="tab">Counselor 1</a> <a href="#tab2" data-toggle="tab">Counselor 2</a> <a href="#tab3" … -
Replied To a Post in How to increment dynamically href id using for loop
Use a loop and just add the digit on each time. This is pretty basic stuff, may I ask if you are able to program at all in php? -
Replied To a Post in Blue Pill or Red Pill
I love this one: https://www.youtube.com/watch?v=z9Sen1HTu5o -
Replied To a Post in need help creating score calculator with array
You don't have to use var, you can use this instead: int[] nonZeroData = intScoreTotalsArray.Where(v => v > 0).ToArray(); "I notice that before it was always showing 20 zeros in … -
Began Watching How to sum to specific count of rows in Datagridview
Hi , how to add numbers in specific count of rows in Datagridview like in this[Click Here](http://i.imgur.com/IZJ39Wq.png) picture. I already run this code to sum all collumn in my Datagridview. … -
Replied To a Post in How to sum to specific count of rows in Datagridview
Can you not just hard code this: Dim x As Decimal = 0 x += Convert.ToDecimal(Table1DataGridView.Rows(0).Cells(1).Value) x += Convert.ToDecimal(Table1DataGridView.Rows(1).Cells(1).Value) x += Convert.ToDecimal(Table1DataGridView.Rows(3).Cells(1).Value) Where Cells(1) is the appropriate column? -
Replied To a Post in Dropdown Menu
You haven't removed the horizontal spacing. Is this any good? Its a very quick hack - I'm sure you can tidy it up a bit. http://www.paxium.co.uk/content/daniweb/menu.html -
Began Watching Dropdown Menu
Sir I am trying to create dropdown menu, so i have these codes <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled … -
Replied To a Post in Dropdown Menu
Try changing #menu ul li a:hover + ul { display: block; } To #menu ul li:hover > ul { display: block; } Also remove horiztinal spacing with something like margin: … -
Replied To a Post in need help creating score calculator with array
Sure there are many ways to fix this. You could do it like this for example: private void btnDisplayScores_Click(object sender, EventArgs e) { var nonZeroData = intScoreTotalsArray.Where(v => v > … -
Began Watching Fetch Data
How to Fetch Data form Sites Like Flipkart,Amazone,Snapdeal And Compare Prices Of Products Form This Ecommerce Websites..? -
Replied To a Post in Fetch Data
This is called screenscraping but you must get the permission of the website owners before you use this. -
Replied To a Post in How to display multiple values in jquery
Youre welcome -
Began Watching How to display multiple values in jquery
I am facing to dispaly multiple values in another text box this is my code $("#firsttearesult").val(diffHour,diffMins); Any body help me to display both -
Replied To a Post in How to display multiple values in jquery
$("#firsttearesult").val(diffHour + " " + diffMins); -
Replied To a Post in VPN to unblock Blocked websites
You can always remote desktop to your pc at home and use that. -
Began Watching VPN to unblock Blocked websites
Hi, My husband and I are going to Dubai, I heard that many websites are blocked there, So I'm looking for a cheap and reliable vpn service, Any help would … -
Began Watching Newbie Here
Hi all. I am newbie here a web developer curently working in CSS, Jquery and php+mysql. Hope to learn new things and solutions. Regards -
Replied To a Post in Newbie Here
Hi and Welcome -
Replied To a Post in Create folder type image gallery
You say that "I am displaying images from db dynamically" As I said the next step is to instead of that, display your categories from your database. Are you able … -
Gave Reputation to JorgeM in Using a JavaScript Spinner During an Ajax Request
When users interact with your web page and processes, it is important to provide them with continuous feedback. Without the feedback, a user is left wondering if you page is … -
Replied To a Post in need help creating score calculator with array
You also need to add in some error handling. What if they enter non numeric data? What happens if they try and add more than 20 items? Let me know … -
Replied To a Post in need help creating score calculator with array
Next to add numbers to the array just use: intScoreTotalsArray[intScoreCount] = intScore; Put this in your button click event handler like this: private void btnAdd_Click(object sender, EventArgs e) { int … -
Replied To a Post in need help creating score calculator with array
Ok I have this running now. One thing at a time. Firstly to display vertically you just need: numbersString += intScoreTotalsArray[i] + "\n"; -
Replied To a Post in Blue Pill or Red Pill
The coloured walls one doesn't work for me either :( -
Began Watching need help resolving an error
my code is as follows: class pottertr_Point{ private String name; private double x; private double y; public pottertr_Point(){ name="Org"; x=(0); y=(0); } public pottertr_Point getPoint(){ pottertr_Point p= new pottertr_Point(); p.name=this.name; … -
Replied To a Post in need help resolving an error
You need something like below on or around line 57 p[0] = new pottertr_Point(); p[1] = new pottertr_Point(); p[2] = new pottertr_Point(); -
Replied To a Post in need help creating score calculator with array
I need the autogenerated code too. Your form is a partial class. Visual Studio will also have created a partial class into which it puts the C# code to generate … -
Replied To a Post in need help creating score calculator with array
It cuts off at line 69 - maybe there is a size limit on the forum? -
Began Watching flow control instructions
if Al < 0 then put ffh in Ah else put 0 in Ah End_iF -
Replied To a Post in flow control instructions
Loveley -
Began Watching Warning: Cannot modify header information - headers already sent by
<?php ob_start(); header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0"); header("Cache-Control: post-check=0, pre-check=0", false); header("Pragma: no-cache"); include "admin/include/config.php"; include "temp_config.php"; //session_start(); $tmp = $_SESSION['tmp_id']; $cartsql = mysql_query("SELECT * FROM `cart` WHERE `temp_id` = … -
Replied To a Post in Warning: Cannot modify header information - headers already sent by
You need to switch on Response Buffering. I'm not a php developer but foud this link: http://php.net/manual/en/function.ob-start.php -
Replied To a Post in Blue Pill or Red Pill
I don't understand that one Jim -
Began Watching Marketplace activity level
i signed up and donated to check out the marketplace today. Most posts have only a few views and were posted months ago! Why is the marketplace here so unpopular? … -
Replied To a Post in Marketplace activity level
And lo and behold Ryan is spamming us already! -
Began Watching PHP Website Development
I need to create a new site in PHP and need to host in cloud. Can anyone say in which DB I can host my site? -
Replied To a Post in PHP Website Development
Typically MySQL goes hand in hand with php but you can use any you like.
The End.