-
Replied To a Post in Saving a user - help
You haven't mentioned what is happening or included your code class so we don't have much to go on. I would suggest adding code to output PHP errors on the … -
Began Watching My Website Position is not improved in google why?
Hi Friends. This is my website digitalvaaradhi.com . From last 2 months i did both seo and smo. but my website position is not improved. why? Please anlayze my website … -
Replied To a Post in My Website Position is not improved in google why?
What search terms are you targeting? If you're trying to compete on terms like 'web design' you've got long road ahead of you... Having just checked your meta tags it … -
Replied To a Post in SQL Select query + advanced filter
You didn't include the schema for the loan table in the initial post but all you need to do is include another join on the loan table. If the loan … -
Replied To a Post in php textarea not submitting to sql database no errors thrown
Turns out that was my bad, put quotes around the input seeing as its a string. `$q = "INSERT INTO Owners(Names) VALUES('$t');";` Without the quotes MySql didn't recognise $t as … -
Began Watching Adding table names in oracle database to combo box in visual studio 2012
I have tried to display the names of table in oracle database in visual studio 2012 in combo box but i am not sure why it is not displaying private … -
Replied To a Post in Adding table names in oracle database to combo box in visual studio 2012
Have you confirmed that the dataTable actually has some rows in it? The usual steps for a problem like this are: catch any errors (which you'll doing), confirm your sql … -
Replied To a Post in SQL Select query + advanced filter
If you want but you implied you wanted today's transaction and NOW() gives you the current date. It's just simplier than passing in a variable you don't need. If you … -
Replied To a Post in php textarea not submitting to sql database no errors thrown
It's missing a closing }, ad another one at line 22 (making the ?> on line 23). Is the code in the comment above in the exact same format as … -
Began Watching Validate a Form.
Can anyone help me for this problem ?.. I have a Log-in form and i want to validate the username and password to log-in but the account is default. This … -
Replied To a Post in Validate a Form.
These don't match: ` <input type="text" id="Username" placeholder="Username">` `user = document.getElementById("User").value;` The <Us> element has an ID of User so you're selecting the wrong element. -
Began Watching SQL Select query + advanced filter
I'm making money lending system. In my database there are two mysql tables which are custormer AND income. All custormer info stored in custormer table. When I give loans these … -
Replied To a Post in SQL Select query + advanced filter
I think this will work (not tested). The important part is the inner select that returns all customer who DO have a record made against today's date and then you … -
Began Watching php textarea not submitting to sql database no errors thrown
I have a text area that I want a list to be entered. I am trying to seperate each list item and put it into a seperate sql entry. Could … -
Replied To a Post in php textarea not submitting to sql database no errors thrown
Your exploding the textarea variable but not using your array anyway for one thing. You'd want to get array after checking if the POST varibable exists and then, if each … -
Began Watching vb.net
i create one function but in return function so there is error like argument not specified for parameter 'arguments' of public function give some proper soluation **and code for checking … -
Replied To a Post in vb.net
Your signatures for the userExit method don't match. You're calling it with no parameters but the method signature expects a variable called empCode. -
Replied To a Post in SQL Server 2014 Installation and Problems
Right, I should have seen the code you linked in your first post, my bad. You have this line: `$dbh = new PDO('mysql:host=localhost:1433;dbname=ItemAssetDB', '', '');` which is, obviously, using PDO … -
Began Watching SQL Server 2014 Installation and Problems
Hello, currently on one of my development servers I have SQL Server 2014 installed, the problem I HAD was that when I executed any of my PHP sites connected to … -
Replied To a Post in SQL Server 2014 Installation and Problems
This is a bit confusing, you seem to be jumping from referring to MySql databases to SQL Server databases. What db type are you trying to connect to, what is … -
Began Watching Null reference exception mvc 4
There is a null reference exception occurred in MVC 4 application as below [click here to view exception](http://i.stack.imgur.com/ypBet.png) but values are came to the variable. there for no point to … -
Replied To a Post in Null reference exception mvc 4
You'll have to double check each x item in your list. One of them doesn't have a value for the name property. The null pointer exception really only means one … -
Began Watching Creating multi user role based admin
Hi there, I follow this tutorial for my web app. link: http://www.thesoftwareguy.in/creating-multi-user-role-based-admin-using-php-mysql-bootstrap/ Can anyone give me idea to do this same app using mysqli? Thanks. -
Replied To a Post in Creating multi user role based admin
It shouldn't be much different from what that article contained, the idea is fairly well explained. Is there something in particular that is causing you trouble? -
Began Watching Mongodb insert date
I am learning mongoDB , version 3 and I wanted to create a collection with two fileds, a date field and a descrition field. When I try to insert a … -
Replied To a Post in Mongodb insert date
I'm not an expert in Mongo at all but have you tried it with double quotes around the text string instead of singles? Single quotes can be an escape character … -
Began Watching PHP / MYSQL Connection Error
Hello guys, I had to change the host of my web page , now I'm having trouble accessing the page because of problems in the connection string with the base. … -
Replied To a Post in PHP / MYSQL Connection Error
The PHP manual has this to say about the mysql_select_db method's second parameter (called the link identifier): Link Identifer: The MySQL connection. If the link identifier is not specified, the … -
Began Watching JQuery UI Not working all of a sudden
I have a website that has been using background color animations for a while when all of sudden they just stopped working. I can't think of any major change I've … -
Replied To a Post in JQuery UI Not working all of a sudden
Any errors showing in the console? -
Replied To a Post in Error establishing a database connection
And do you have the ability to access the site via FTP or similar? -
Began Watching Error establishing a database connection
Hi dear everyone, I have a website on WordPress that has been down at least for the past two months: http://terouma.net It is hosted with OVH and for the past … -
Replied To a Post in Error establishing a database connection
Is the actual error "Error establishing a database connection"? And has the support guy been able to give you any further information from the server logs? -
Began Watching No Row at Position 0
Hi, i am trying to open a form from selected data in an earlier from. I use cust_id = grd_customer(0, current_row).Value to hold the value so that cust_id will open … -
Replied To a Post in No Row at Position 0
That error would generally happen because the select statement has returned an empty set, which is why the row count is zero. Double check your sql statement is working as … -
Began Watching Data to text field in android app
Hi All, Back after a LONG break from Daniweb, love the new look! I have the following data scanned from a pdf417 and need to extract certain text to certain … -
Replied To a Post in Data to text field in android app
Given the easy nature of the string you can split on the '%' character and end up with an array of the text you are after. The hard part is … -
Began Watching Responsive Design and Chrome Window Resizer
So, I've been teaching myself HTML, CSS, JS/jQuery for the last three months and I've finally got enough stuff put together that I'd like to create a portfolio. I've been … -
Replied To a Post in Responsive Design and Chrome Window Resizer
I'm not familar with tha particular tool but I've found the device mode option available in Chrome Inspector is pretty good and I've never had issues with a page not … -
Began Watching import sql file in mySQL database
hello guys i make a database software and i want to import sql file into mySQL database with query , so that when user click button this sql file is … -
Replied To a Post in import sql file in mySQL database
If the sql files is a list of INSERT, SELECTS, etc, read the file via a stream reader and execute each line as a standard query i.e. the text in … -
Began Watching Target Class in Script
I'm trying to target a class within a script in console.log in Chrome; I get an error ClassName is not defined ? if (getElementByClassName("class-name")){ document.write("correct class") }; - I wish … -
Replied To a Post in Target Class in Script
Where in the page is the script running? If it is before the element then your script is looking for an element that doesn't exist exist yet. If you were … -
Began Watching Why is my menu not working in internet explorer?
Why is my menu not working in internet explorer but working in chrome and firefox.. here is my code: html: <html> <head> <title>practice</title> <link rel="stylesheet" type="text/css" href="style.css" > </head> <body> … -
Replied To a Post in Why is my menu not working in internet explorer?
Could you define 'not working' and which IE version? I just copied your code and it worked in both Chrome and IE 11. -
Began Watching SQLite3 database or list?
I have an SQLite3 database which has 8 tables and in which data will not change so needs no add option. Each table has 4 or 5 fields of different … -
Replied To a Post in SQLite3 database or list?
I think the amount of data and how you need to interact with it should be the deciding factor. The avantage of databases is that selecting the information is easy, … -
Began Watching Just want to know if this is possible :x
Hi, I just want to know if i can remove a part of a string Exemple : in Textbox1 i have "C:\Users\Someone\Desktop\test.exe" and i want delete the string until the … -
Replied To a Post in Just want to know if this is possible :x
You haven't mentioned what language you intend to be using for this but the answer is yes, it's possible. Depending on what functions you have available in your chosen language … -
Began Watching help
pls i need assistance on developing a school project site where one can upload and download(buy) school project material.. thanks
The End.