8,966 Posted Topics
Re: Set a unique index on person_name in your table. If you try to insert a duplicate, the query will throw an exception. | |
Re: You can't. The database is on the server, Javascript is on the client, so you need something in-between. | |
Re: I think you need to look up Application Lifecycle Management. | |
Re: Nice example. Just a rant. I hate WP's "OOP" because of this: global $wpdb; This goes against all that OO stands for, and although I understand the ease of use, it's absolutely horrible. | |
Re: If you inspect that page's source, you'll see. | |
Re: > how to store it in the database to handle repeating transactions, as well as "one-off" transactions. Can these exist in the same table? I would store repeating transactions in a separate table. Then, using a daily cron job I'd check whether a repeating transaction should be inserted into your … | |
Re: Yes, it's possible like you described. Solution depends on how you want to use it. If you want a more detailed answer, share both your files (remove your credentials) and give an example of what you want to achieve. | |
Re: I wouldn't use `\b` here as `=` is considered a word boundary and the `==` is part of the crypt. I'd use: ([^ ]*)$ Meaning the last characters of the string excluding the space. (Many ways to Rome...) ![]() | |
Re: `INSERT INTO` does not use a `WHERE` clause like that. Remove it (line 39) or use an `UPDATE` statement. | |
Re: What do you have so far? Did you search this forum? There are plenty threads on this subject. | |
| |
Re: I can't find anything in the code to help you flush. I think you better contact your host and find out what's causing the issue. Perhaps you have an error log with some more information. From what I've read it can be caused when you are not closing your connections … | |
Re: Did you try: $duomenubaze = new duomenubaze(); | |
Re: Perhaps you need to manually free/dispose your bitmaps after use, I think they are unmanaged resources. | |
Re: jQuery will make this animation a lot easier. It has a fade function that will do what you need. Check the jQuery manual for an example on fade. | |
Re: > why I should transition The MySQL extension is deprecated, so in the next big release it won't be available anymore. | |
Re: What code do you have? The [imap_headerinfo](http://www.php.net/manual/en/function.imap-headerinfo.php) should return that information. | |
Re: I use this: <Files ~ "^[^\.]+$"> ForceType application/x-httpd-php5 </Files> It simply tells Apache that it should parse files without an extension as PHP. No longer the need to rewrite. | |
Re: Can't you just remove the line-breaks BEFORE inserting into the database? a `str_replace()` should do the trick. | |
Re: http://www.aspsnippets.com/Articles/Implement-Pagination-in-ASP.Net-Gridview-Control.aspx | |
Re: http://www.daniweb.com/web-development/web-design-html-and-css/threads/464781/what-is-the-best-way-to-create-a-website-from-scratch | |
Re: http://www.elevateweb.co.uk/image-zoom/examples First hit on DDG. | |
Re: That means some object you are using is not initialized properly. Can you show the line of code that triggers the error? | |
Re: Some of that code is probably loaded dynamically with AJAX. It's not possible to get that with curl. | |
Re: > its showing blank There's probably an error somewhere. Check your error_log, or add error checking to your query. | |
![]() | Re: Search your project for anything that has `EJournalF` in it. ![]() |
Re: Check out [this article](http://technet.microsoft.com/en-us/library/dd392015(v=sql.100).aspx) | |
Re: Why not learn the basics of Java/JSP first, and then decide whether you want to learn something like ASP.NET or PHP. | |
Re: Am not sure what your problem is, but if you include those `using` lines, then you can copy the function you need too and use it. | |
Re: > What I need, is to pull up value from database-table1-column6 depending on value at database-table1-column2,3,4,5 This is a little vague. Can you explain what you mean with an example? | |
Re: > unable to give space automatically after entering text to file Can you explain what you mean by this? | |
Re: Closed. http://www.daniweb.com/software-development/csharp/threads/470743/listview-textbox | |
Re: > Is there any way to protect the code without encoding software? No. You need an encoding tool. PHP is text only, and ASP.NET can be reverse engineered. | |
Re: It's easier to start with jQuery, but if you want to understand what's happening, start with Javascript. | |
Re: Shouldn't that be: CREATE TEMPORARY TABLE temp ... Without the `#` | |
Re: [File](http://msdn.microsoft.com/en-us/library/d62kzs03(v=vs.110).aspx) doesn't accept URL's. It needs to be an absolute or relative filepath. | |
Re: Remove `and s.status_value=` and use a `case` with your `count`. | |
Re: Although it often sounds like a regex is your solution, it's not always the case. Simply counting the required characters/digits is much simpler. | |
I've posted a bug report here: http://tracker.firebirdsql.org/browse/DNET-540 If someone using Firebird and C# could verify this for me, or shed some light on (other) possible issues, that would be much appreciated. The code works as expected with 2.5.1, but does not with 2.5.2. Note: the sample is built on .NET … | |
Re: http://validator.w3.org/feed/check.cgi?url=http%3A%2F%2Fwww.daniweb.com%2Fstats%2Factivity_stream | |
Re: Be careful. IIRC a temporary table is dropped once the connection is terminated. Since PHP scripts are stateless, the connection is terminated at the end of every script, thus removing the temporary table(s) associated with that connection. | |
Re: > Parse error: syntax error, unexpected $end Most of the time this is a missing curly bracket somewhere. | |
Dani. The members shown in the endorsement suggestion page should exclude deleted members. In mine it still shows LastMitch, whom has deleted his profile. |
The End.