-
Replied To a Post in fedex api integration
I have no account, so I cannot access the API documentation. -
Replied To a Post in Push or Length
Should work fine if your array is large enough. Can you the code you tried? -
Replied To a Post in how to implement this code in my website
Am not very familiar with it, perhaps someone else will answer. You do have node.js running? -
Replied To a Post in php mail send
Show your code. -
Replied To a Post in Creating a Secure Web API?
Have a look at how OAuth works, it might give you some clues. -
Replied To a Post in Search Error
You have two `mysql_query`, you need only one. -
Replied To a Post in E-mail removal
> Does anyone know why the post still appears in the public view? It's cached, so may take some time. -
Replied To a Post in what do you prefere for naming: database - c++ - java - php?
I use #4 for private properties and local variables, #3 for public properties, constants, table- and column names. -
Replied To a Post in how to implement this code in my website
Looks like it needs to run on [node.js](http://nodejs.org) -
Edited Pass arguments to a Function
I need to create a form with 2 text boxes to receive numbers as input and 1 command button that displays a message box containing the larger of the two … -
Replied To a Post in Search Error
Add a `WHERE` clause to your query. http://dev.mysql.com/doc/refman/5.0/en/string-comparison-functions.html#operator_like -
Replied To a Post in tables
Use CSS. A table is full width by default. Floating them left and right with an adjusted width should work. -
Replied To a Post in fedex api integration
https://www.fedex.com/us/developer/#tab4 -
Replied To a Post in How do I integrate EIDA API(Emirates Identity Authority) in my ASP.NET App
Where is the documentation? -
Edited dell wyse wt3125se
hi, guys i need help on reparing my dell wyse wt3125se thin client it shows flash memory error. -
Replied To a Post in WinForms obsolete attribute on partial class
> Is the main partial form part missing? Nothing is missing. > why would you be changing it Not me, others here that may not look closely at the code. … -
Replied To a Post in PHPMailer with PDO
http://www.daniweb.com/web-development/php/code/_/17 -
Edited WinForms obsolete attribute on partial class
I've got some winforms partial classes marked `[Obsolete]`. Unlike when applying this to methods, I get no warning after building. Is this because it's set on a partial class? I … -
Created WinForms obsolete attribute on partial class
I've got some winforms partial classes marked `[Obsolete]`. Unlike when applying this to methods, I get no warning after building. Is this because it's set on a partial class? I … -
Edited java application that will print to patterns
Need to write a program that will print two patterns: 1 1 2 1 2 3 1 2 3 4 1 2 3 4 5 1 2 3 4 5 … -
Replied To a Post in java application that will print to patterns
Closed threads didn't get past the conversion to the new website. -
Replied To a Post in Database Driven Dynamic Website
I am used to generating HTML/CSS by hand, so I'm not the right person to give you advice on that. If DreamWeaver is your preferred choice to get the design … -
Replied To a Post in Forum MVC view question
Showing the delete post link is view dependent (so kind of acceptable), but don't forget to include the same check in your controller. The other option is to create two … -
Replied To a Post in Database Driven Dynamic Website
> Where should I start? Just start. Start building a regular website and extend it gradually with everything you need for such a website. If you already know ASP.NET I … -
Replied To a Post in HTML5 section and article tags
[Article](http://www.w3.org/html/wg/drafts/html/master/sections.html#the-article-element) is defined as *The article element represents a complete, or self-contained, composition in a document, page, application, or site and that is, in principle, independently distributable or reusable, e.g. … -
Replied To a Post in Push or Length
`push` adds a new item to the array. `length` just returns the number of items in the array. `length - 1` is the last item in the array, since an … -
Replied To a Post in PHPMailer with PDO
See the code snippets tab for PDO examples. -
Replied To a Post in Im New Here:)
Welcome to DaniWeb. -
Replied To a Post in Hello everyone!
Welcome to DaniWeb. -
Replied To a Post in Insert data into three tables using php and mysql
Do: mysql_query($sql1) or die(mysql_error()); and tell us if you see an error. -
Replied To a Post in E-mail removal
Send me a PM with the links to the posts, and I'll remove the email addresses. -
Replied To a Post in A phablet at last? 6.8-inch Hisense X1 smartphone
Am seriously considering a Nokia Lumia 1520 (6"). -
Replied To a Post in New to this website
Welcome to DaniWeb. -
Replied To a Post in Edit database content
Your queries have a comma before the WHERE, it will generate an error. Remove it. -
Replied To a Post in MVC pattern
> So I read somewhere that your views should not contain any logic in them. I assume they are referring to business logic. Enabling/disabling items in the view is not … -
Replied To a Post in Centering in DIV
Yes. That kinda covers it ;) -
Replied To a Post in Centering in DIV
Your example is fine, it just doesn't line up with "nav being a replacement for div". A div can be used in conjunction with nav just fine, as it's just … -
Replied To a Post in Centering in DIV
> <nav> should be used instead of <div> when creating navigation http://www.w3.org/TR/2011/WD-html5-author-20110705/Overview.html `nav` is for document metadata, whereas `div` is for grouping content. -
Replied To a Post in Centering in DIV
> use <nav> instead of <div> for your navigation `<nav>` is NOT a replacement for `<div>`. It's a semantic element, like `<section>`. It shouldn't be used for layout. -
Edited file reading problem
#include<stdio.h> #include<stdlib.h> int main() { int i,j; int ascii_value; char c; FILE *plain; plain=fopen("xx.dat","r"); while((c=getc(plain))!=EOF) { ascii_value=c; printf("%d %c\n",ascii_value,c); printf("~~~~~~~~~~~~~~~~~~~~\n"); } fclose(plain); return 0; } the file xx.dat is 12sdfsldkfj … -
Replied To a Post in file reading problem
Closed, continued here: http://www.daniweb.com/software-development/c/threads/475529/file-reading-problem -
Replied To a Post in Login system
What do you have so far? -
Replied To a Post in Android database
Use a database on a shared host, and create an API for accessing it. -
Edited New to this website
I am new to daniweb, I would like to have friends so i can find ways to learn more on computer science and to become better in this field. I … -
Edited Get sum of Column w/o Database
How CAn I get the "sum" of a "Column" in a Data Grid? I dont't use /connect database with my Data Grid! How can I make this happen? Thank you … -
Replied To a Post in WD my passport
I have used a passport, and it required additional software. Not sure if that's still the case. Did you install anything? -
Replied To a Post in get all available SQl SERVERS
[Here](http://msdn.microsoft.com/en-us/library/a6t1z9x2(v=vs.110).aspx)'s a start. -
Replied To a Post in Back at Daniweb
Welcome back. -
Edited when to use paper book and when ebook?
when to use paper book and when ebook? and which you prefer and when? -
Edited Need a good duplicate file finder
Hello!:) Need your help. Recently some problem has appeared on my pc - there are many duplicates in it. Now i'm looking for some good duplicate file finder to delete …
The End.