-
Replied To a Post in update varchar data to binary(16)
http://msdn.microsoft.com/en-us/library/ms190273.aspx -
Edited update varchar data to binary(16)
Hello, I have my password column with varchar(50) datatype. now i have created a new column NewPassword binary(16). I want to convert password varchar data to binary(16) format in NewPassword … -
Edited Android Programming Research Paper Help
I am finally finishing up my BS degree for computer science and have a research paper to do. I chose Android Programming as my topic, but my instructor informed me … -
Edited Need help with validating ISBN 13 Processing Page of PHP program?
HI, I am a beginner at programing and I have to do this project where it is asking me to validate any ISBN 13 number. I know how to set … -
Edited JOINING Tables
I am trying a query in mysql. I have 3 tables which are linked by the same foriegn key ... Table 1 = students (PKey - stdnt_rfid_tag) Table 2 = … -
Replied To a Post in How to select image from folder by name in mysql database
> where is name of image You should know. Where did you store it when uploading the image? -
Replied To a Post in Can This Code Be Optomised?
Here's a start: function loadProject(var next) { var $projects = $("#projects"); pid = $projects.data('id'); if (next) { pid = (pid == 6) ? 1 : (pid + 1); } else … -
Replied To a Post in Select Query on date time field in ms access 2010
We use Microsoft.Jet.OLEDB.4.0 (C#). -
Edited Recover Factory Image in PC
My HP PC a6207c is 7 years old. Has Vista. Became very sluggish and started crashing all the time. Is only used for personal use, not business. When it crashes, … -
Edited Need help with validating ISBN 13 Processing Page of PHP program?
HI, I am a beginner at programing and I have to do this project where it is asking me to validate any ISBN 13 number. I know how to set … -
Replied To a Post in Need help with validating ISBN 13 Processing Page of PHP program?
> Isn't this just an extension of ... Indeed, just need to add recalculation of the check digit. -
Replied To a Post in Can This Code Be Optomised?
The next and previous functions are similar enough to be merged into a single function. -
Replied To a Post in Web Page Scraping
My original reply still stands. If that data is being retrieved via Javascript, you can't get at it, even if you wait for a minute. -
Replied To a Post in Retrive menu and submenu names in a query
What do you have so far? -
Edited Retrive menu and submenu names in a query
Hello to everyone. I have this table: CREATE TABLE `documents_category` ( `id` int(11) NOT NULL AUTO_INCREMENT, `parent_id` int(11) NOT NULL, `title` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `description` text COLLATE utf8_unicode_ci … -
Edited image size for android developement
hello friends. i just start with android and i got many trouble one is the image size so i can undestund ldp is for low density and it's grow to … -
Replied To a Post in Select Query on date time field in ms access 2010
Please get back on topic. Downvotes are something you get, often enough from people not involved in the discussion. Formatting the date for insertion is correct, but the format depends. … -
Replied To a Post in Web Page Scraping
> But i check it in source code, data is accessable to me and i can fetch it If you already have the source code and the data, what do … -
Edited delete multiple tables using full outer join
Im trying to delete from multiple tables using full outer join like this: $del_id = (int) $del_id DELETE contact, child, spouse FROM contact FULL OUTER JOIN child ON child_name = … -
Replied To a Post in Need help with validating ISBN 13 Processing Page of PHP program?
http://isbn-information.com/isbn-information/the-13-digit-isbn.html -
Replied To a Post in Web Page Scraping
If the page loads data via AJAX this may prove impossible. -
Gave Reputation to Reverend Jim in Programming Sucks
This is just too good not to share with everyone. >The only reason coders' computers work better than non-coders' computers is coders know computers are schizophrenic little children with auto-immune … -
Replied To a Post in Sample C# Windows Form Login Screen
It's not a fully functional program, it's part of a form's code. -
Replied To a Post in Multiple dropdown box that Relation to each other Using Javascript
http://www.daniweb.com/web-development/php/code/437655/getting-products-details-from-categories-subcategories-with-ajax-call- http://www.daniweb.com/web-development/php/code/476623/ajaxed-linked-dropdowns-select-fields-for-volatile-data -
Edited jobs
hi i'm sourav passed b.c.a from burdwan universitynow doing m.c.a from ignou...what are the jobs options and which is the best language for jobs java,.net or php??? -
Edited Dice Rolling
Hello somebody should please help me with codes to run this assignment below: It should have a button that when clicked causes your code to simulate rolling a dice 100 … -
Replied To a Post in embedded queries based on the results of previous query
> I was thinking it would have been more efficient. It's recursive so never very efficient. You can still try to create a stored procedure of the above and see … -
Replied To a Post in How to trim entire database column
> It did eliminate the space Perhaps it was another non-visible character, that phpMyAdmin wasn't showing correctly. -
Replied To a Post in embedded queries based on the results of previous query
> I am truly disappointed in what has become the response level in this forum. That's a shame. Your question is hard to answer. You yourself say it's cryptic, and … -
Replied To a Post in PHP and SQL together
Line 135 is faulty, as said before. -
Replied To a Post in PHP and SQL together
> my database credentials are correct > Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'vdevine'@'localhost' (using password: NO) in /home/vdevine/public_html/bmunn/php/inquiry.php on line 64 The above states otherwise. -
Replied To a Post in Image Insert to MySQL
Show the query that is being executed. My guess is an empty `$person_id` -
Replied To a Post in how to avoid ' from inserting in sql query
> You should use mysql_real_escape_string() or mysqli_real_escape_string() on most string data before you store it in a mySQL database. Although misspelled, he's using Oracle. -
Replied To a Post in how to avoid ' from inserting in sql query
Preferably use parameter binding. What is the PHP code you are currently using? -
Replied To a Post in Image Insert to MySQL
> $sql_photo = "INSERT INTO `person` (photo) VALUES ('&location') WHERE person_id = " .$person_id; Do not use an ampersand, but a dollar sign: $sql_photo = "INSERT INTO `person` (photo) VALUES … -
Replied To a Post in How to trim entire database column
AFAIK it should work. How do you know that the email values still have spaces in them? -
Edited Help with my array
My code compiles but it has a java null error. import java.util.Arrays; public class Example { private int[] NumberArray; public Example() { int[] NumberArray = new int[4]; } public void … -
Edited ATM algorithm
I have my instructions in the top of my code. But for some reason when I input a decimal and then return my error message like it is supposed to … -
Replied To a Post in How to trim entire database column
> But it won't work Which database? -
Replied To a Post in PHP and SQL together
Apparently it doesn't like your database credentials. Are you sure they are correct? -
Replied To a Post in PHP and SQL together
You are missing dollar signs for the correct variables in your `$values` Can you be a little more specific about what works and what does not? -
Replied To a Post in How to Prepare for Interview .net and php? (
Learn the one they are using at the company you are visiting for an interview. -
Replied To a Post in How to Prepare for Interview .net and php? (
> What should i prepare first PHP or ASP.NET Whatever they use. -
Edited How to optimization a new website for search engine ?
when have to make new website for our business. than that website come to the google search engine in SERP first and second page. than we will have to got … -
Replied To a Post in How to check and see if a string contains invalid characters?
Although the above is fine, you can also use Pos: while i <= Length(sEmail) do begin if Pos(sEmail[i], ALLOWED) = 0 then begin bResult := false; break; end; Inc(i); end; -
Replied To a Post in How to check and see if a string contains invalid characters?
Perhaps accidentally inputted UPPERCASE characters? It doesn't account for those either. Which email address did you try to validate? Step through it with the debugger so you can see where … -
Replied To a Post in How to check and see if a string contains invalid characters?
You don't account for dots and @ in the allowed characters. Apart from that, you should check whether the email contains exactly one @, and the position(s) of the dot(s) … -
Replied To a Post in Confused for choosing- PHP or ASP
An impressive website has little to do with the choice, it can be built with all technologies. You should choose based on what you are most comfortable with (or your … -
Replied To a Post in What is REST API ? can any one explain it with example simply.
http://www.daniweb.com/api/home -
Replied To a Post in New here!!
Welcome to DaniWeb.
The End.