8,966 Posted Topics
Re: You'll need Javascript/jQuery to achieve what you need IMO. Am I right, that if you click the link you want to prefill a textbox with "furniture"? | |
Re: That's only possible if your excel files contain a unique column (or combination of columns) so you can identify the already inserted rows. | |
http://www.humanstxt.org I came across this by chance. Do any of you guys/gals use it? I like the fact that you can thank the people who helped, however small the contribution, in a semi-standard way. | |
Re: Have you tried to use `float` on your `ftNav` divs? | |
Re: Please tone down. [Our rules](https://www.daniweb.com/community/rules) clearly state that you should show your effort, which is clearly lacking in your OP. Show YOUR code, and clearly explain what parts you are having difficulty with. | |
Re: Check for errors: mysql_query($sql_u) or die(mysql_error()); | |
Re: Read this [url=http://symphony-of-dot-net.blogspot.com/2010/03/making-css-custom-font-works-with-ie.html]blog-post[/url] too. | |
Just thought I should share: https://vivaldi.com Tech preview is out, so far I'm pretty impressed. ![]() | |
Re: An RSS feed is not meant to contain so many items, but to display just the latest/changed ones. If you still want to convert this XML, I suggest you use an XSLT transformation from the sitemap to the feed. You still need to know coding, so I suggest you DO … | |
Re: WordPress is written in PHP, so it sounds like he either has a CMS of his own (which is good), or he's trying to complicate things to get more money (if he builds one from scratch, which is bad). I'd try to get a written statement from him what exactly … | |
Re: http://php.net/manual/en/function.mysql-affected-rows.php If it returns zero, nothing was changed. | |
Re: Perhaps you can use the [Community Edition](http://www.visualstudio.com/products/visual-studio-community-vs). It has InstallShield Express limited, but I haven't used it yet. | |
Re: Have a look at the MySQL `YEAR()` and `MONTH()` functions. | |
Re: > Here is the whole script I don't see a database connect. Where is `$conn` instantiated? Echo out `$sql` and post it here. | |
Re: > hookup = new SqlConnection( > "Server=localhost\\SqlExpress;Database=tests" + > "Integrated Security=True"); Isn't that missing a semi-colon (after tests)? | |
Re: > need some help to to that What have you tried? | |
Re: From (found in your linked URL): [https://msdn.microsoft.com/en-us/library/8kb3ddd4(v=vs.110).aspx#UsingSingleSpecifiers](https://msdn.microsoft.com/en-us/library/8kb3ddd4(v=vs.110).aspx#UsingSingleSpecifiers) **Using Single Custom Format Specifiers** *"To use any of the custom date and time format specifiers as the only specifier in a format string (that is, to use the "d", "f", "F", "g", "h", "H", "K", "m", "M", "s", "t", "y", "z", ":", … | |
Re: It can only be made generic if the API's don't differ too much. I am not sure (but I doubt) if that's the case with the forums you mentioned. | |
| |
Re: http://dev.mysql.com/doc/index-topic.html What do you want to learn? Most book are on specific topics, e.g. administering or query language. ![]() | |
Re: Am pretty sure that when you start learning ASP.NET MVC5 the Javascript/jQuery interaction will become clear soon enough. I found [this introduction](http://www.asp.net/mvc/overview/getting-started/introduction/getting-started) to be very helpful. | |
Re: Did you read the two forum stickies? https://www.daniweb.com/software-development/csharp/threads/437362/getting-started-with-c-the-list https://www.daniweb.com/software-development/csharp/threads/448647/new-programmers-what-resources-are-available-to-you | |
Re: Your hidden submit does not have a value, so by default that is an empty string, which evaluates to false. | |
Re: > Question is what is the appropriate language to do a movie database? Depends on your requirements. There is no best one language, it can be done in all of them. | |
Re: $result = preg_replace( '%<a href="(?!http://mysite\.com)(.*?)" class="postlink">%', '<a href="$1" class="postlink" rel="nofollow">', $subject); | |
Re: Search this forum for pagination, a lot of threads are already here about the subject. | |
Re: Usually get parameters are added to identify such links, but of course this only works if the link points to a domain you own/control. You cannot track a direct link to Google, so the only way would be to route it through your server first. This might be considered phishing. | |
Re: http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlcommand.executescalar%28v=vs.110%29.aspx I quote: *"The first column of the first row in the result set, or a null reference (Nothing in Visual Basic) if the result set is empty. **Returns a maximum of 2033 characters**."* Perhaps it's not returning the full image stream. | |
Re: > No set method for property 'computer' in type 'Scanner.BarcodeScanner+ScannedItem'. The class cannot be deserialized. You cannot deserialize a string if it doesn't have a setter. You are sending a string, but the receiving end cannot store the value in your class property. In short, add a setter. | |
Re: > And the result of the query in database is this This is directly on the database? You need a script language in between to query the database and pass the results to javascript. | |
Re: Line 4 in login.php stores an array (a result row) in your session variable. I think it should be something like this: $row = mysqli_fetch_row($result); $_SESSION['user_id'] = $row['user_id']; // you only want to store the user id, so change it to the right column name. | |
Re: Can't you use an interface (or a superclass) on both category classes? In either case, you can use one `IEnumerable<ICategory>` for both. As far as I can tell, both classes are using the same properties so generalizing your nested list can solve your issue. | |
Re: > However I intend to do so without installing the SDK into my 3rd party web server. What is the best way to achieve this?. Basically you'd have to implement the functionality of the SDK (implement the OAuth flow). | |
Re: A barcode scanner (keyboard wedge)? For example: http://www.barcodesinc.com/cats/barcode-scanners/ps2.htm | |
Re: https://www.daniweb.com/community-center/daniweb-community-feedback/threads/440621/requirements-of-becoming-a-mod | |
Re: > Using the same IP address was bit of as give-away. So was using the same name in your profile :) | |
The End.