-
Replied To a Post in Text fields that accept and allow multiple entries
What you can do is add a button to add more text fields. Then, using jQuery, whenever the button is pressed add a new div into the page below the … -
Began Watching Text fields that accept and allow multiple entries
I am creating a dynamic Form, which is like a registration form on my website.The text fields needs to accept and allow multiple entries .since i am a beginner and … -
Replied To a Post in Text fields that accept and allow multiple entries
What exactly do you mean by "The text fields needs to accept and allow multiple entries"? -
Began Watching c#
hey geet here.... i have one query please if any body know about then plz help me....... i m on trouble..... actually i am creating a project of online quiz … -
Replied To a Post in c#
Maybe you could be more specific as to the actual problem? asking how to code an admin section is quite vague. -
Began Watching execution plans and index creation help
Please explain to me what execution plans and index creation is in Oracle SQL. An example would be great also. Thank you!! -
Replied To a Post in execution plans and index creation help
An execution plan is a description of how the database is going to carry out your query. It can show you what happens and in what order, plus detailing how … -
Replied To a Post in Export html table data to .csv with css using javascript
No, they are not the same. Formats like CSV or .txt are just data. They have no ability to store meta-information at all. .xls and .doc, etc have the ability … -
Began Watching Export html table data to .csv with css using javascript
Hi Experts, I want to export html table to .csv file, my code is working but i want to export it with border or background color on its header. how … -
Replied To a Post in Export html table data to .csv with css using javascript
CSV is just plain data, formatted in a certain way. There is no way to add style rules to it. It's like asking if you can add fonts to a … -
Began Watching Source Tree
Source Tree - What is source tree for? I already try using this? One question that I am still doubting. Is it safe? ( I am still new user) Thanks … -
Replied To a Post in Source Tree
We use sourcetree at my work and it's a pretty good tool. It's just a repo interface of course when you get right down to it but works well and … -
Replied To a Post in Newsletter: how to add email address of receiver in newsletter
You just need to loop through your $group, getting each email address and sending one email per address. So alter line 27 to run through all individual items in $groups. -
Began Watching Newsletter: how to add email address of receiver in newsletter
Hello, I have a php script which devide the emails in groups so that each group can send separately. Servers can look it as spam if the group is too … -
Replied To a Post in Newsletter: how to add email address of receiver in newsletter
But you're adding in the group as a bcc list, meaning a lot of people (everyone mentioned in the bcc) gets the same email body. You can't personalise that to … -
Began Watching Need Help With Scraping IMGURLs from Multiple Webpages using PHP
Hello, I am using this very basic form of the dom scraper to scrape image urls from tumblr webpage, it kinda does what i am looking for but i am … -
Replied To a Post in Need Help With Scraping IMGURLs from Multiple Webpages using PHP
Limiting the results to just links containing "media.tumblr.com" is easy: `if(strpos($element->href, 'media.tumblr.com') !== false) {` ` echo $element->href . '<br>';' `}' will remove any that don't include that string For … -
Began Watching Sorting information from arrays
I need to sort some information from an array. I'm trying to find the minimum value out of two numbers, from a csv file, the first part of the information … -
Replied To a Post in Sorting information from arrays
Are there three columns in total, a name and then two numbers e.g. bruce, 1, 5? You haven't stated where the error is actually occuring but is it at line … -
Replied To a Post in Error: undefined index
Var_dump $_GET['id'] and you'll see it isn't a value. What is the URL you are calling? Can you at least out the parameters here? -
Replied To a Post in the automatic number is not displayed in the vb form
You haven't explained exactly what this bill number is but, assuming you've got your table starting at 1 for the first entry, if the returned rows is zero (no records … -
Began Watching Error: undefined index
Hello guys, Here i am having another error. Error is undefined index on my products.php page i tried everything i can to define it but if i define it code … -
Replied To a Post in Error: undefined index
In your first attempt the error would have gone away because the code in the loop wasn't getting called. isset($_GET['id']) failed and so nothing else happened. Double check the URL … -
Began Watching the automatic number is not displayed in the vb form
hello this code for add the auto number form the access table to the form vb but But it only works when the table contains data but when the table … -
Replied To a Post in the automatic number is not displayed in the vb form
Of course it won't work. An empty table will return an empty result set and so your line `txtBillNo.Text = BillNo.Rows(i)(0).ToString + 1` can't supply a value because BillNo.Rows(i)(0) doesn't … -
Began Watching Infinite scrolling problem using jQuery and ajax. Two questions ...
I am trying to build a scrolling system for my website. This is what I have com up with ... $.ajaxSetup({ cache: false }); $(window).scroll(function(){ if($(window).scrollTop() == $(document).height() - $(window).height()){ … -
Replied To a Post in Infinite scrolling problem using jQuery and ajax. Two questions ...
Your function gets called every time there is a scroll event, so at the bottom of the page, with no more pictures to display, it has no choice to respond … -
Began Watching No Value Given to one or more parameter error
I checked my spellings and everything for so many times already Here's the code: Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click If Not cnn.State = … -
Replied To a Post in No Value Given to one or more parameter error
You're not quoting the first value, Me.Product_NameTextBox. And you are quoting both price inputs. Is that correct? I would have expected them to be decimals/currency inputs. Also, use parameters to … -
Began Watching closeModal showing error
Hello, i am having an in closemodal function don't know what it is function closeModal(){ jQuery(#details-modal).modal('hide'); setTimeout (function(){ jQuery(#details-modal).remove(); jQuery(.modal-backdrop).remove(); },500) } please help -
Replied To a Post in closeModal showing error
As noted in the other thread: ` jQuery('#details-modal').modal('hide');` -
Replied To a Post in Code says detailsmodal function is undefined
You need to quote the id in the jquery call `jQuery('#details-modal').modal('hide');` They are strings not variables. -
Began Watching Query running slow?
Hi Everyone! I have an application that has thousand of records. the problem that i am having right now is that my website is performing slow.when i am trying to … -
Replied To a Post in Query running slow?
What is the query trying to do? If it is returning a large record set, written bad or uses a large number of joins it could be hogging the resources. … -
Replied To a Post in Code says detailsmodal function is undefined
It is an error. `var data {"id": id};` isn't valid javascript. `var data = {"id": id};` -
Began Watching How to execute query Into sql by vb2012
Hey I have a problem with execute query into sql I got an error I want to add query like sql into sql can I put query by click on … -
Replied To a Post in How to execute query Into sql by vb2012
You're going to step too far with this line: `command = New SqlCommand(Query.Text, mysqlconn).ExecuteNonQuery` Instead of setting up your command object and storing it in the command variable you are … -
Began Watching Opacity of the Content in HTML page
I have a HTML page with a background image. I am trying to change the opacity of my background image but it is also affecting my child text. I tried … -
Replied To a Post in Opacity of the Content in HTML page
Opacity affects the element it is being applied to (obviously) so adding opacity to the div will affect it's background image and everything else inside it, which includes the text. … -
Began Watching Code says detailsmodal function is undefined
Hello i am developing a project but getting an error i don't know why is this happening and i have tried everything i can. please help me i am providing … -
Replied To a Post in Code says detailsmodal function is undefined
First thing to check is whether your javascript function is appearing on the page. Once the page is loaded in the browser, view the source and confirm the footer is … -
Began Watching file_put_contents
Hello, Simple is not so simple i see, Trying to save file in html-format from server to local disk. <?php if(isset($_POST['submit'])) { $file = $_POST['file']; file_get_contents('files/$file'); file_put_contents('download/$file'); } ?> <form … -
Replied To a Post in file_put_contents
Firstly, it looks like you need to use double quotes as you're including a variable in the file name name string. `file_put_contents("files/$file");` Single quotes are 'dumb' and don't parse variables … -
Began Watching vb.net List box question
Hey, I'm looking for big answer for my big answer, Even I can't think can I do this, this way. --- In my program I load some mysql table's columns … -
Replied To a Post in vb.net List box question
This is hard to understand exactly what you want. You have, for example, the name and id listed in list boxes 1 and 2, like so: LB1 LB2 1 Adam … -
Began Watching An Old Fake Microsoft Scam
I just got off the phone. It was an interesting call. It was a technician from Microsoft calling to tell me that my computer had been sending a lot of … -
Replied To a Post in An Old Fake Microsoft Scam
That was popular in New Zealand about 2 years ago. The first couple of times I got called they always said it was 'Windows' calling about emails my computer was … -
Began Watching Displaying from the database by category
i want when a category is selected, the user only gets the product of that paticular category. here is my code ajax_listbox.php <html> <head> <title>Demo of List box selection and … -
Replied To a Post in Displaying from the database by category
You haven't mentioned what problem you are having. Does the PHP script work by itself when you test it? Does the AJAX request connect to it correctly? What exactly is … -
Began Watching Testing double for lack of input
Can anyone tell me what is wrong with this? App crashes if user input is left blank. I was hoping it would display toast and wait for input. EditText userWireInput …
The End.